diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-01-19 10:11:55 +0100 |
|---|---|---|
| committer | Soren Hansen <soren@linux2go.dk> | 2011-01-19 10:11:55 +0100 |
| commit | c79e72b2a14b5e231724a1e187bf7effe5c64fc4 (patch) | |
| tree | 0c57155309b17900b91f3f882b15e12c1578ebb9 | |
| parent | b6ad755dcb495743c9137b0da441d264420b02b6 (diff) | |
| download | nova-c79e72b2a14b5e231724a1e187bf7effe5c64fc4.tar.gz nova-c79e72b2a14b5e231724a1e187bf7effe5c64fc4.tar.xz nova-c79e72b2a14b5e231724a1e187bf7effe5c64fc4.zip | |
PEP-8 fixes
| -rw-r--r-- | nova/tests/test_virt.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nova/tests/test_virt.py b/nova/tests/test_virt.py index 39dc91df8..f6800e3d9 100644 --- a/nova/tests/test_virt.py +++ b/nova/tests/test_virt.py @@ -352,8 +352,8 @@ class IptablesFirewallTestCase(test.TestCase): security_group_chain in self.out_rules, "ICMP acceptance rule wasn't added") - self.assertTrue('-A %s -p icmp -s 192.168.11.0/24 -m icmp --icmp-type' - ' 8 -j ACCEPT' % security_group_chain in self.out_rules, + self.assertTrue('-A %s -p icmp -s 192.168.11.0/24 -m icmp --icmp-type ' + '8 -j ACCEPT' % security_group_chain in self.out_rules, "ICMP Echo Request acceptance rule wasn't added") self.assertTrue('-A %s -p tcp -s 192.168.10.0/24 -m multiport ' @@ -496,4 +496,3 @@ class NWFilterTestCase(test.TestCase): self.fw.apply_instance_filter(instance) _ensure_all_called() self.teardown_security_group() - |
