diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2015-02-11 11:54:20 +0000 |
---|---|---|
committer | Daniel Watkins <daniel.watkins@canonical.com> | 2015-02-11 11:54:20 +0000 |
commit | 4cfdde8be624f5dc9a9ec214ea60f9d1f43ee424 (patch) | |
tree | f7be46c439b2473663239ee285a4512a291780ac /tests/unittests | |
parent | 3b605b691d4fde6be0ccb8034b4c3fc8299f3858 (diff) | |
download | vyos-cloud-init-4cfdde8be624f5dc9a9ec214ea60f9d1f43ee424.tar.gz vyos-cloud-init-4cfdde8be624f5dc9a9ec214ea60f9d1f43ee424.zip |
Fix import ordering in test_util.py.
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/test_util.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py index a1bd2c46..23821521 100644 --- a/tests/unittests/test_util.py +++ b/tests/unittests/test_util.py @@ -1,21 +1,21 @@ from __future__ import print_function import os -import stat -import yaml import shutil +import stat import tempfile -from . import helpers import six +import yaml + +from cloudinit import importer, util +from . import helpers try: from unittest import mock except ImportError: import mock -from cloudinit import importer -from cloudinit import util class FakeSelinux(object): |