From 7db73666185e0c50b21a31e3b436fb5bc9b9f44b Mon Sep 17 00:00:00 2001 From: Pablo Nicolas Estevez Date: Sun, 1 Dec 2024 17:37:16 -0300 Subject: [PATCH] correct typo --- test/dialect/mysql/test_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.47.3