summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2017-01-13 15:41:20 -0500
committerGerrit Code Review <gerrit@awstats.zzzcomputing.com>2017-01-13 15:41:20 -0500
commit2c13aa097b3588a25173eb297eee08afd18f88d6 (patch)
tree2e25114ecf738ded9a3e050d970b7a5e3a639a60 /test/sql/test_query.py
parent0460bc79d9986132646049d8167bd5dbe3388a65 (diff)
parentfa6dd376bb24845724287d980a98ea50eb1cfab1 (diff)
downloadsqlalchemy-2c13aa097b3588a25173eb297eee08afd18f88d6.tar.gz
Merge "Support python3.6"
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index aca933fc9..5a201d904 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -250,7 +250,7 @@ class QueryTest(fixtures.TestBase):
a_eq(prep(r'select \foo'), r'select \foo')
a_eq(prep(r"time='12\:30:00'"), r"time='12\:30:00'")
- a_eq(prep(":this \:that"), "? :that")
+ a_eq(prep(r":this \:that"), "? :that")
a_eq(prep(r"(\:that$other)"), "(:that$other)")
a_eq(prep(r".\:that$ :other."), ".:that$ ?.")