From abaeb00888deb4431f0691536c5ac9c763a3e7e1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 5 Feb 2026 11:47:07 -0500 Subject: [PATCH] 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 --- test/sql/test_metadata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 2.47.3