summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2020-02-25 09:46:48 -0700
committerGord Thompson <gord@gordthompson.com>2020-02-25 09:46:48 -0700
commitcdc195ff48f12e4bf54b99e4269db693f5a46a15 (patch)
treed3b3ca682a9f95593aa93c7fb478973c242a659e /lib/sqlalchemy/testing
parente15c53716b9f59c7c666c77d1e8b8d82538036a3 (diff)
downloadsqlalchemy-cdc195ff48f12e4bf54b99e4269db693f5a46a15.tar.gz
Fix IntegerTest for sqlalchemy-firebird
Recent cleanup of test_types.py introduced a regression for sqlalchemy-firebird (and possibly other external dialects). With this change, `test_huge_int` now passes for sqlalchemy-firebird. Change-Id: Ieeb4b33ec5985f2e2bf6832d1cdef294f85407a0
Diffstat (limited to 'lib/sqlalchemy/testing')
-rw-r--r--lib/sqlalchemy/testing/suite/test_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_types.py b/lib/sqlalchemy/testing/suite/test_types.py
index 3ad8d5316..73cd1deca 100644
--- a/lib/sqlalchemy/testing/suite/test_types.py
+++ b/lib/sqlalchemy/testing/suite/test_types.py
@@ -411,7 +411,7 @@ class IntegerTest(_LiteralRoundTripFixture, fixtures.TestBase):
Column("integer_data", datatype),
)
- metadata.create_all(connection)
+ metadata.create_all(config.db)
connection.execute(int_table.insert(), {"integer_data": data})