diff options
Diffstat (limited to 'test/dialect/test_mysql.py')
-rw-r--r-- | test/dialect/test_mysql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py index f40fa89bd..accc84c2c 100644 --- a/test/dialect/test_mysql.py +++ b/test/dialect/test_mysql.py @@ -660,7 +660,7 @@ class TypesTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL): schema.CreateTable(t1), "CREATE TABLE sometable (" "somecolumn VARCHAR(1), " - " CHECK (somecolumn IN ('x','y','z'))" + "CHECK (somecolumn IN ('x', 'y', 'z'))" ")" ) |