diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-07-02 15:29:05 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-07-03 06:29:07 +0900 |
commit | 34c88c4771a5dd4fb687fe225cebfc6fc99381f0 (patch) | |
tree | b6144f582473b2aea9127cbbcb113d1b16b57a77 /test/scenario_test/route_server_test.py | |
parent | 64f5846bc6e1a12b0a9bf3fb8d56d33ebe46b811 (diff) |
test: introduce modular test library
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/route_server_test.py')
-rw-r--r-- | test/scenario_test/route_server_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scenario_test/route_server_test.py b/test/scenario_test/route_server_test.py index 61c94eb0..63063d50 100644 --- a/test/scenario_test/route_server_test.py +++ b/test/scenario_test/route_server_test.py @@ -39,7 +39,7 @@ class GoBGPTest(GoBGPTestBase): use_local = parser_option.use_local go_path = parser_option.go_path - log_debug = parser_option.gobgp_log_debug + log_debug = True if parser_option.gobgp_log_level == 'debug' else False fab.init_test_env_executor(self.quagga_num, use_local, go_path, log_debug) print "please wait " + str(self.initial_wait_time) + " second" |