diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-12-12 14:01:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-12 14:01:54 +0000 |
commit | def49808fcca40d837f0a37cc23783af80198c01 (patch) | |
tree | c30493618e1cec29cbcd68e9a0ea1de7f10d2577 /functest/tests/unit/cli/commands/test_cli_os.py | |
parent | 250a7936cc34e2e22c7a9a8f766c9ee0bdcb9f4c (diff) | |
parent | 7a07dd0968ab9775e7bbfd59ff19bddcb8605af4 (diff) |
Merge "Add python3 support in cli"
Diffstat (limited to 'functest/tests/unit/cli/commands/test_cli_os.py')
-rw-r--r-- | functest/tests/unit/cli/commands/test_cli_os.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/functest/tests/unit/cli/commands/test_cli_os.py b/functest/tests/unit/cli/commands/test_cli_os.py index 806bc931..434370a5 100644 --- a/functest/tests/unit/cli/commands/test_cli_os.py +++ b/functest/tests/unit/cli/commands/test_cli_os.py @@ -82,7 +82,7 @@ class CliOpenStackTesting(unittest.TestCase): return_value=True) @mock.patch('functest.cli.commands.cli_os.click.echo') def test_snapshot_create_overwrite(self, mock_click_echo, mock_os_path): - with mock.patch('__builtin__.raw_input', return_value="y") \ + with mock.patch('six.moves.input', return_value="y") \ as mock_raw_input, \ mock.patch.object(self.cli_os, 'ping_endpoint'), \ mock.patch('functest.cli.commands.cli_os.os_snapshot.main') \ @@ -111,7 +111,8 @@ class CliOpenStackTesting(unittest.TestCase): return_value=True) @mock.patch('functest.cli.commands.cli_os.click.echo') def test_snapshot_show_default(self, mock_click_echo, mock_os_path): - with mock.patch('__builtin__.open', mock.mock_open(read_data='0')) \ + with mock.patch('six.moves.builtins.open', + mock.mock_open(read_data='0')) \ as m: self.cli_os.snapshot_file = self.snapshot_file self.cli_os.snapshot_show() |