diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-01-05 09:00:04 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-01-05 09:02:43 +0100 |
commit | b46115a43bcbe7214178f00cc97a8e5de018ee3f (patch) | |
tree | af36fa4fead27dfd90c762d1094f6d2bb53c045e | |
parent | d258cbb06182cf49a5a7d06f4a5350a3b696d3eb (diff) |
Switch to assert_any_call in test_show_credentials
The previous test can be false if users set OS_ env vars.
Change-Id: If517582d77aa1373bf253d7e23731e2e896d26ac
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-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 9e704806..f0e58c67 100644 --- a/functest/tests/unit/cli/commands/test_cli_os.py +++ b/functest/tests/unit/cli/commands/test_cli_os.py @@ -231,7 +231,7 @@ class CliOpenStackTesting(unittest.TestCase): value = 'OS_VALUE' with mock.patch.dict(os.environ, {key: value}): self.cli_os.show_credentials() - mock_click_echo.assert_called_once_with("{}={}".format(key, value)) + mock_click_echo.assert_any_call("{}={}".format(key, value)) if __name__ == "__main__": |