]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix failing test
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 5 Feb 2026 16:47:07 +0000 (11:47 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 5 Feb 2026 16:47:07 +0000 (11:47 -0500)
the new addition of c names like "add" "extend" test
needed to be adjusted to target a single dialect

Change-Id: I94ab20314c8bc312135706ecc3d9aaad89b3caf4

test/sql/test_metadata.py

index c2b2cf0dfbc7be1ea8143e861a5b2cb750f1a2d9..09d84683cdfeccdefd03f7d76e3f61ce6929b150 100644 (file)
@@ -1983,7 +1983,8 @@ class TableTest(fixtures.TestBase, AssertsCompiledSQL):
         )
         self.assert_compile(
             select(t1.c.add, t1.c.remove, t1.c.clear, t1.c.extend),
-            'SELECT t."add", t.remove, t.clear, t.extend FROM t',
+            "SELECT t.add, t.remove, t.clear, t.extend FROM t",
+            dialect="default",
         )
 
     def test_c_immutable(self):