From: Federico Caselli Date: Fri, 24 Oct 2025 21:54:48 +0000 (+0200) Subject: postfix of I5f0fe800e31aac052926cebe9206763eef9a804c X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=413a87093ccc85a3c8cfc18acc03707631474920;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git postfix of I5f0fe800e31aac052926cebe9206763eef9a804c Change-Id: Ic007a5bd842207a2c5a56374953e48c6acc7b254 --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 4d73eb9931..899d2227c1 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -3115,7 +3115,7 @@ class BinaryTest(fixtures.TablesTest, AssertsExecutionResults): compiled = select(cast(literal(util.b("foo")), LargeBinary)).compile( dialect=testing.db.dialect, compile_kwargs={"literal_binds": True} ) - result = connection.execute(compiled.statement) + result = connection.exec_driver_sql(compiled.string) eq_(result.scalar(), util.b("foo")) def test_bind_processor_no_dbapi(self):