diff options
author | Gord Thompson <gord@gordthompson.com> | 2021-07-26 12:52:23 -0600 |
---|---|---|
committer | Gord Thompson <gord@gordthompson.com> | 2021-07-26 14:00:53 -0600 |
commit | 2c4a497a0c7f3981be38340089cbb5f32e376b03 (patch) | |
tree | 84ff588f3f48afc4db2b4a401293c4332f7898de /test/dialect/mysql/test_compiler.py | |
parent | c6b1d24fe71c22e4d2117d084f06df3597671985 (diff) | |
download | sqlalchemy-2c4a497a0c7f3981be38340089cbb5f32e376b03.tar.gz |
Modernize tests - dml_values
Change-Id: Ida86ed40c43d91813151621b847376976773a5f9
Diffstat (limited to 'test/dialect/mysql/test_compiler.py')
-rw-r--r-- | test/dialect/mysql/test_compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 6929d7d4e..c6c3bf99d 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -575,7 +575,7 @@ class SQLTest(fixtures.TestBase, AssertsCompiledSQL): t = sql.table("t", sql.column("col1"), sql.column("col2")) self.assert_compile( - t.update(values={"col1": 123}), "UPDATE t SET col1=%s" + t.update().values({"col1": 123}), "UPDATE t SET col1=%s" ) self.assert_compile( t.update() |