summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorJoe Gordon <jogo@cloudscaling.com>2012-10-22 13:45:28 -0700
committerJoe Gordon <jogo@cloudscaling.com>2012-10-22 13:47:36 -0700
commitc39dbb53bcbc0df82d9052248ee8029613858813 (patch)
treefe60b7195f50fff2041a07f5eb5d9e42032c815c /nova/tests
parent4011a767c0ba45b244e004fb9a15ad921985ead9 (diff)
Fix and enable pep8 E502, E712
pep8 E502 and E712 were temporarily disabld when upgrading to pep8 1.2 Change-Id: If5158304cb8e73ef844dea9f726df6f8fe305269
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/network/test_linux_net.py2
-rw-r--r--nova/tests/test_iptables_network.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/network/test_linux_net.py b/nova/tests/network/test_linux_net.py
index fd6708343..72bf71674 100644
--- a/nova/tests/network/test_linux_net.py
+++ b/nova/tests/network/test_linux_net.py
@@ -222,7 +222,7 @@ class LinuxNetworkTestCase(test.TestCase):
is_admin=True)
def get_vifs(_context, instance_uuid):
- return [vif for vif in vifs if vif['instance_uuid'] == \
+ return [vif for vif in vifs if vif['instance_uuid'] ==
instance_uuid]
def get_instance(_context, instance_id):
diff --git a/nova/tests/test_iptables_network.py b/nova/tests/test_iptables_network.py
index 166e28a5c..c8f310303 100644
--- a/nova/tests/test_iptables_network.py
+++ b/nova/tests/test_iptables_network.py
@@ -97,7 +97,7 @@ class IptablesManagerTestCase(test.TestCase):
table.remove_rule('FORWARD', '-s 1.2.3.4/5 -j DROP')
new_lines = self.manager._modify_rules(current_lines, table)
self.assertTrue('[0:0] -A %s-FORWARD '
- '-s 1.2.3.4/5 -j DROP' % self.binary_name \
+ '-s 1.2.3.4/5 -j DROP' % self.binary_name
not in new_lines)
def test_nat_rules(self):