summaryrefslogtreecommitdiff
path: root/test/inheritance.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/inheritance.py')
-rw-r--r--test/inheritance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inheritance.py b/test/inheritance.py
index 657af8a27..3202c3417 100644
--- a/test/inheritance.py
+++ b/test/inheritance.py
@@ -95,7 +95,7 @@ class InheritTest2(testbase.AssertMixin):
engine = testbase.db
global foo, bar, foo_bar
foo = Table('foo', engine,
- Column('id', Integer, primary_key=True),
+ Column('id', Integer, Sequence('foo_id_seq'), primary_key=True),
Column('data', String(20)),
).create()