summaryrefslogtreecommitdiff
path: root/test/dialect/test_mssql.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/test_mssql.py')
-rw-r--r--test/dialect/test_mssql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_mssql.py b/test/dialect/test_mssql.py
index 2b35ff57f..74e96c8ef 100644
--- a/test/dialect/test_mssql.py
+++ b/test/dialect/test_mssql.py
@@ -136,7 +136,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
selectable=t2,
dialect_name=darg),
"UPDATE sometable SET somecolumn=:somecolumn "
- "FROM othertable WITH (PAGLOCK) "
+ "FROM sometable, othertable WITH (PAGLOCK) "
"WHERE sometable.somecolumn = othertable.somecolumn"
)