diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2017-01-13 15:41:20 -0500 |
---|---|---|
committer | Gerrit Code Review <gerrit@awstats.zzzcomputing.com> | 2017-01-13 15:41:20 -0500 |
commit | 2c13aa097b3588a25173eb297eee08afd18f88d6 (patch) | |
tree | 2e25114ecf738ded9a3e050d970b7a5e3a639a60 /test/sql/test_compiler.py | |
parent | 0460bc79d9986132646049d8167bd5dbe3388a65 (diff) | |
parent | fa6dd376bb24845724287d980a98ea50eb1cfab1 (diff) | |
download | sqlalchemy-2c13aa097b3588a25173eb297eee08afd18f88d6.tar.gz |
Merge "Support python3.6"
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]) ) |