From: Mike Bayer Date: Sun, 9 Nov 2014 17:40:35 +0000 (-0500) Subject: - add a type here so that to account for pre-0.9 FK/type support X-Git-Tag: rel_0_7_0~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9c58f1ca6b3adb7869aba241f3fd5f64ddd279c;p=thirdparty%2Fsqlalchemy%2Falembic.git - add a type here so that to account for pre-0.9 FK/type support --- diff --git a/tests/test_batch.py b/tests/test_batch.py index 0d5edd6b..faeff5a3 100644 --- a/tests/test_batch.py +++ b/tests/test_batch.py @@ -65,7 +65,7 @@ class BatchApplyTest(TestBase): t = Table( 'tname', m, Column('id', Integer, primary_key=True), - Column('parent_id', ForeignKey('tname.id')), + Column('parent_id', Integer, ForeignKey('tname.id')), Column('data', String) ) return ApplyBatchImpl(t, table_args, table_kwargs)