]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
78-char width
authorShaun Stanworth <shaun.stanworth@onefinestay.com>
Sun, 9 Nov 2014 15:18:04 +0000 (15:18 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 26 Jan 2015 23:43:19 +0000 (18:43 -0500)
test/dialect/postgresql/test_dialect.py
test/dialect/postgresql/test_types.py

index 2166bca328dd71e9f9406fab050a0d55bc449896..9f86aaa7afac5ac2edfb4ebeb13766430aa02100 100644 (file)
@@ -118,7 +118,8 @@ class MiscTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL):
         eq_(c.connection.connection.encoding, test_encoding)
 
     @testing.only_on(
-        ['postgresql+psycopg2', 'postgresql+pg8000', 'postgresql+psycopg2cffi'],
+        ['postgresql+psycopg2', 'postgresql+pg8000',
+         'postgresql+psycopg2cffi'],
         'psycopg2 / pg8000 - specific feature')
     @engines.close_open_connections
     def test_autocommit_isolation_level(self):
index 5f1d37b24fa5f6093b52fc09dc80d82c789979ea..95c034f11ddac73a4cd90cba712807d4e4a88279 100644 (file)
@@ -382,7 +382,8 @@ class NumericInterpretationTest(fixtures.TestBase):
         from sqlalchemy.dialects.postgresql import psycopg2cffi, pg8000, \
             psycopg2, base
 
-        dialects = pg8000.dialect(), psycopg2.dialect(), psycopg2cffi.dialect()
+        dialects = (pg8000.dialect(), psycopg2.dialect(),
+                    psycopg2cffi.dialect())
         for dialect in dialects:
             typ = Numeric().dialect_impl(dialect)
             for code in base._INT_TYPES + base._FLOAT_TYPES + \