diff options
| author | Chuck Short <zulcss@ubuntu.com> | 2011-03-17 10:43:48 -0400 |
|---|---|---|
| committer | Chuck Short <zulcss@ubuntu.com> | 2011-03-17 10:43:48 -0400 |
| commit | dee8a59b5d575a0327464e27115d0d870cde97be (patch) | |
| tree | bf6d4f90b13f239b9b78617dc17dff86d8f8f0fd | |
| parent | a06203c66af05c96c161b80511f4a6607ffe4905 (diff) | |
| download | nova-dee8a59b5d575a0327464e27115d0d870cde97be.tar.gz nova-dee8a59b5d575a0327464e27115d0d870cde97be.tar.xz nova-dee8a59b5d575a0327464e27115d0d870cde97be.zip | |
more pep8 fixes
| -rw-r--r-- | nova/tests/test_virt.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/tests/test_virt.py b/nova/tests/test_virt.py index fefc11f0d..2510525fc 100644 --- a/nova/tests/test_virt.py +++ b/nova/tests/test_virt.py @@ -263,9 +263,9 @@ class LibvirtConnTestCase(test.TestCase): ] for i, (check, expected_result) in enumerate(check): - self.assertEqual(check(tree), - expected_result, - '%s failed common check %d' % (xml, i)) + self.assertEqual(check(tree), + expected_result, + '%s failed common check %d' % (xml, i)) def _check_xml_and_uri(self, instance, expect_ramdisk, expect_kernel, rescue=False): |
