From: Mike Bayer Date: Thu, 5 Feb 2026 16:47:07 +0000 (-0500) Subject: fix failing test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abaeb00888deb4431f0691536c5ac9c763a3e7e1;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix failing test the new addition of c names like "add" "extend" test needed to be adjusted to target a single dialect Change-Id: I94ab20314c8bc312135706ecc3d9aaad89b3caf4 --- diff --git a/test/sql/test_metadata.py b/test/sql/test_metadata.py index c2b2cf0dfb..09d84683cd 100644 --- a/test/sql/test_metadata.py +++ b/test/sql/test_metadata.py @@ -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):