diff options
Diffstat (limited to 'tests/model_options/test_tablespaces.py')
| -rw-r--r-- | tests/model_options/test_tablespaces.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/model_options/test_tablespaces.py b/tests/model_options/test_tablespaces.py index e8372e1bc7..2d4b9073e8 100644 --- a/tests/model_options/test_tablespaces.py +++ b/tests/model_options/test_tablespaces.py @@ -43,8 +43,7 @@ class TablespacesTests(TestCase): def assertNumContains(self, haystack, needle, count): real_count = haystack.count(needle) - self.assertEqual(real_count, count, "Found %d instances of '%s', " - "expected %d" % (real_count, needle, count)) + self.assertEqual(real_count, count, "Found %d instances of '%s', expected %d" % (real_count, needle, count)) @skipUnlessDBFeature('supports_tablespaces') def test_tablespace_for_model(self): |
