]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix test 6672/head
authorKai Mueller <15907922+kasium@users.noreply.github.com>
Thu, 24 Jun 2021 14:05:07 +0000 (14:05 +0000)
committerKai Mueller <15907922+kasium@users.noreply.github.com>
Thu, 24 Jun 2021 14:05:07 +0000 (14:05 +0000)
test/sql/test_metadata.py

index 4efcf607d16b1ba9613331fc9a850416721eacf7..6208114814db649ad6528e1f78d4e895f6f80454 100644 (file)
@@ -5542,5 +5542,5 @@ class CopyDialectOptionsTest(fixtures.TestBase):
             self.check_dialect_options_(t2)
 
     def test_prefixes_set_to_none(self):
-        table = Table("foo", Column("bar", Integer), prefixes=None)
+        table = Table("foo", MetaData(), Column("bar", Integer), prefixes=None)
         assert table._prefixes == []