From: Philip Jenvey Date: Sun, 19 Jul 2009 00:06:45 +0000 (+0000) Subject: long from zxjdbc is also a reasonable result X-Git-Tag: rel_0_6_6~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8db4c567f560ecc1422fb1efbc2759ffb1940d51;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git long from zxjdbc is also a reasonable result --- diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index 0c2d4340f3..a23f8617d5 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -1139,7 +1139,7 @@ class ComponentReflectionTest(TestBase): try: insp = create_inspector(meta.bind) oid = insp.get_table_oid(table_name, schema) - self.assert_(isinstance(oid, int)) + self.assert_(isinstance(oid, (int, long))) finally: addresses.drop() users.drop()