diff options
author | Scott Moser <smoser@brickies.net> | 2016-11-07 13:28:28 -0500 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-11-07 13:28:28 -0500 |
commit | c24187e6ceb3dd56c9d402e00c1571ed08a7f45b (patch) | |
tree | cf0b2a30e37baac02c40c7ea11b4f5749a37a0f8 | |
parent | a1cdebdea65ccd827060c823146992bba9debe19 (diff) | |
download | vyos-cloud-init-c24187e6ceb3dd56c9d402e00c1571ed08a7f45b.tar.gz vyos-cloud-init-c24187e6ceb3dd56c9d402e00c1571ed08a7f45b.zip |
pyflakes: fix issue with pyflakes 1.3 found in ubuntu zesty-proposed.
An obvious fix for an issue raised by pyflakes 1.3.
-rw-r--r-- | tests/unittests/test_datasource/test_openstack.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unittests/test_datasource/test_openstack.py b/tests/unittests/test_datasource/test_openstack.py index 97b99a18..125c6d6e 100644 --- a/tests/unittests/test_datasource/test_openstack.py +++ b/tests/unittests/test_datasource/test_openstack.py @@ -67,8 +67,6 @@ OSTACK_META = { CONTENT_0 = b'This is contents of /etc/foo.cfg\n' CONTENT_1 = b'# this is /etc/bar/bar.cfg\n' OS_FILES = { - 'openstack/latest/meta_data.json': json.dumps(OSTACK_META), - 'openstack/latest/user_data': USER_DATA, 'openstack/content/0000': CONTENT_0, 'openstack/content/0001': CONTENT_1, 'openstack/latest/meta_data.json': json.dumps(OSTACK_META), |