From a9c58f1ca6b3adb7869aba241f3fd5f64ddd279c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 9 Nov 2014 12:40:35 -0500 Subject: [PATCH] - add a type here so that to account for pre-0.9 FK/type support --- tests/test_batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_batch.py b/tests/test_batch.py index 0d5edd6..faeff5a 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)