diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-01-06 12:02:38 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-01-06 12:02:38 -0500 |
commit | 38c851e58e09c5574661ef4b2d2e66f6e38063d1 (patch) | |
tree | d136c739ba324802e90b7afede5429254e519475 /tests/unittests/test_distros | |
parent | fa5ce8c40621c78e61c7d9bd073903101f7d6a5e (diff) | |
download | vyos-cloud-init-38c851e58e09c5574661ef4b2d2e66f6e38063d1.tar.gz vyos-cloud-init-38c851e58e09c5574661ef4b2d2e66f6e38063d1.zip |
tools/run-pep8: remove leading ',' fed to --ignore
--ignore was being called with ',E121,E...' rather than
'E121,E...'.
that resulted in odd behavior, missing the pep8 errors that are fixed
here.
Diffstat (limited to 'tests/unittests/test_distros')
-rw-r--r-- | tests/unittests/test_distros/test_netconfig.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py index dbbf9617..193338e8 100644 --- a/tests/unittests/test_distros/test_netconfig.py +++ b/tests/unittests/test_distros/test_netconfig.py @@ -294,7 +294,6 @@ IPV6_AUTOCONF=no self.assertCfgEquals(expected_buf, str(write_buf)) self.assertEquals(write_buf.mode, 0644) - def test_simple_write_freebsd(self): fbsd_distro = self._get_distro('freebsd') util_mock = self.mocker.replace(util.write_file, @@ -357,4 +356,3 @@ defaultrouter="192.168.1.254" ''' self.assertCfgEquals(expected_buf, str(write_buf)) self.assertEquals(write_buf.mode, 0644) - |