diff options
Diffstat (limited to 'test/sql/test_quote.py')
| -rw-r--r-- | test/sql/test_quote.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py index 2dee9bc09..1c023e7b1 100644 --- a/test/sql/test_quote.py +++ b/test/sql/test_quote.py @@ -66,8 +66,8 @@ class QuoteExecTest(fixtures.TestBase): table2.drop() def test_reflect(self): - meta2 = MetaData(testing.db) - t2 = Table("WorstCase1", meta2, autoload=True, quote=True) + meta2 = MetaData() + t2 = Table("WorstCase1", meta2, autoload_with=testing.db, quote=True) assert "lowercase" in t2.c # indicates the DB returns unquoted names as |
