From: Shaun Stanworth Date: Sun, 9 Nov 2014 15:18:04 +0000 (+0000) Subject: 78-char width X-Git-Tag: rel_1_0_0b1~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0953f2625046b98c7b6fbe157942eddde657e08a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 78-char width --- diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py index 2166bca328..9f86aaa7af 100644 --- a/test/dialect/postgresql/test_dialect.py +++ b/test/dialect/postgresql/test_dialect.py @@ -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): diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 5f1d37b24f..95c034f11d 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -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 + \