]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
repair formatting
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Jan 2015 18:27:34 +0000 (13:27 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Jan 2015 18:27:34 +0000 (13:27 -0500)
test/sql/test_types.py

index 0212499c425956f1dda907468b35e81f223daa97..6ffd88d789a99cc63474a29a307c49468f3a4eab 100644 (file)
@@ -1158,7 +1158,10 @@ class EnumTest(AssertsCompiledSQL, fixtures.TestBase):
         e = Enum(
             "x", "y", name="somename", convert_unicode=True, quote=True,
             inherit_schema=True, native_enum=False)
-        eq_(repr(e), "Enum('x', 'y', name='somename', inherit_schema=True, native_enum=False)")
+        eq_(
+            repr(e),
+            "Enum('x', 'y', name='somename', "
+            "inherit_schema=True, native_enum=False)")
 
 binary_table = MyPickleType = metadata = None