diff options
Diffstat (limited to 'test/dialect/postgresql/test_dialect.py')
-rw-r--r-- | test/dialect/postgresql/test_dialect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py index 1a735c41d..c68af2abb 100644 --- a/test/dialect/postgresql/test_dialect.py +++ b/test/dialect/postgresql/test_dialect.py @@ -119,7 +119,7 @@ class DialectTest(fixtures.TestBase): dialect = psycopg2_dialect.dialect() u = url.make_url("postgresql://") cargs, cparams = dialect.create_connect_args(u) - eq_(cargs, ['']) + eq_(cargs, [""]) eq_(cparams, {}) def test_psycopg2_nonempty_connection_string(self): |