From: Pablo Nicolas Estevez Date: Sun, 1 Dec 2024 20:37:16 +0000 (-0300) Subject: correct typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7db73666185e0c50b21a31e3b436fb5bc9b9f44b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git correct typo --- diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 34b747ed15..44f5887c9b 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -754,7 +754,7 @@ class SQLTest(fixtures.TestBase, AssertsCompiledSQL): t.delete() .where(t.c.col2 == 456) .with_dialect_options(mysql_limit=1), - "DELETE FRM t WHERE t.col2 = %s LIMIT 1", + "DELETE FROM t WHERE t.col2 = %s LIMIT 1", ) def test_utc_timestamp(self):