diff options
Diffstat (limited to 'test/dialect/test_sqlite.py')
-rw-r--r-- | test/dialect/test_sqlite.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index e802f3995..fb98d2f0a 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -101,6 +101,7 @@ class TestTypes(TestBase, AssertsExecutionResults): @testing.provide_metadata def test_type_reflection(self): + metadata = self.metadata # (ask_for, roundtripped_as_if_different) @@ -156,6 +157,7 @@ class TestTypes(TestBase, AssertsExecutionResults): @testing.emits_warning('Did not recognize') @testing.provide_metadata def test_unknown_reflection(self): + metadata = self.metadata t = Table('t', metadata, Column('x', sqltypes.BINARY(16)), Column('y', sqltypes.BINARY()) |