summaryrefslogtreecommitdiff
path: root/test/sql/test_insert_exec.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_insert_exec.py')
-rw-r--r--test/sql/test_insert_exec.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/sql/test_insert_exec.py b/test/sql/test_insert_exec.py
index 16b27aeaa..c4266603e 100644
--- a/test/sql/test_insert_exec.py
+++ b/test/sql/test_insert_exec.py
@@ -369,12 +369,7 @@ class TableInsertTest(fixtures.TablesTest):
Table(
"foo",
metadata,
- Column(
- "id",
- testing.db.dialect.sequence_default_column_type,
- Sequence("t_id_seq"),
- primary_key=True,
- ),
+ Column("id", Integer, Sequence("t_id_seq"), primary_key=True,),
Column("data", String(50)),
Column("x", Integer),
)