diff options
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 38ca09c0a..3e7c3d9a3 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -742,8 +742,8 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL): assert_raises_message( exc.InvalidRequestError, r"Select objects don't have a type\. Call as_scalar\(\) " - "on this Select object to return a 'scalar' " - "version of this Select\.", + r"on this Select object to return a 'scalar' " + r"version of this Select\.", func.coalesce, select([table1.c.myid]) ) |