diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-19 08:40:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-19 08:40:43 +0000 |
commit | f5c8f9dd175e462bf362b5c301205a3376a0d82b (patch) | |
tree | 5658f9620c3deed860e44dd5907a0d623e44628e /functest/tests/unit/cli/commands/test_cli_os.py | |
parent | 9b36089c6a5f01e0770351d0e93b5f34410248a3 (diff) | |
parent | ed88e5e9abb8c24cee2507b62a45878637411c25 (diff) |
Merge "Modify how to disable logging in unit test."
Diffstat (limited to 'functest/tests/unit/cli/commands/test_cli_os.py')
-rw-r--r-- | functest/tests/unit/cli/commands/test_cli_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/tests/unit/cli/commands/test_cli_os.py b/functest/tests/unit/cli/commands/test_cli_os.py index 54042769..7ab4ddc3 100644 --- a/functest/tests/unit/cli/commands/test_cli_os.py +++ b/functest/tests/unit/cli/commands/test_cli_os.py @@ -18,7 +18,6 @@ from functest.utils.constants import CONST class CliOpenStackTesting(unittest.TestCase): - logging.disable(logging.CRITICAL) def setUp(self): self.endpoint_ip = 'test_ip' @@ -234,4 +233,5 @@ class CliOpenStackTesting(unittest.TestCase): if __name__ == "__main__": + logging.disable(logging.CRITICAL) unittest.main(verbosity=2) |