]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
correct typo
authorPablo Nicolas Estevez <pablo22estevez@gmail.com>
Sun, 1 Dec 2024 20:37:16 +0000 (17:37 -0300)
committerPablo Nicolas Estevez <pablo22estevez@gmail.com>
Sun, 1 Dec 2024 20:37:16 +0000 (17:37 -0300)
test/dialect/mysql/test_compiler.py

index 34b747ed1577dbf5bb65ba40f73278db1a36ec91..44f5887c9b5469a772a4f6eddaa00d8881a57542 100644 (file)
@@ -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):