diff options
author | Joshua Harlow <harlowja@gmail.com> | 2016-06-15 12:17:05 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2016-06-15 12:17:05 -0700 |
commit | 417fda64958f04c705860b737787fc921b965ade (patch) | |
tree | 5d2b5dcef14549ed4228e7a4b914223b612497a9 /tests/unittests/test_cli.py | |
parent | 2c5c2d7a500ccb88eee245a1d5f1ca1f9a2156e6 (diff) | |
download | vyos-cloud-init-417fda64958f04c705860b737787fc921b965ade.tar.gz vyos-cloud-init-417fda64958f04c705860b737787fc921b965ade.zip |
Fix a few tools and tests for newer pep8
Diffstat (limited to 'tests/unittests/test_cli.py')
-rw-r--r-- | tests/unittests/test_cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittests/test_cli.py b/tests/unittests/test_cli.py index 8268cd5e..a53e7116 100644 --- a/tests/unittests/test_cli.py +++ b/tests/unittests/test_cli.py @@ -4,10 +4,11 @@ import six import sys from . import helpers as test_helpers -mock = test_helpers.mock from cloudinit.cmd import main as cli +mock = test_helpers.mock + class TestCLI(test_helpers.FilesystemMockingTestCase): |