summaryrefslogtreecommitdiff
path: root/test/ext/test_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ext/test_compiler.py')
-rw-r--r--test/ext/test_compiler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ext/test_compiler.py b/test/ext/test_compiler.py
index 4e8a40ff3..ee64548f5 100644
--- a/test/ext/test_compiler.py
+++ b/test/ext/test_compiler.py
@@ -123,7 +123,7 @@ class UserDefinedTest(fixtures.TestBase, AssertsCompiledSQL):
)
def test_annotations(self):
- """test that annotated clause constructs use the
+ """test that annotated clause constructs use the
decorated class' compiler.
"""
@@ -356,7 +356,7 @@ class DefaultOnExistingTest(fixtures.TestBase, AssertsCompiledSQL):
return "BIND(%s)" % compiler.visit_bindparam(element, **kw)
self.assert_compile(
- t.select().where(t.c.c == 5),
+ t.select().where(t.c.c == 5),
"SELECT t.a, t.b, t.c FROM t WHERE t.c = BIND(:c_1)",
use_default_dialect=True
)
@@ -373,7 +373,7 @@ class DefaultOnExistingTest(fixtures.TestBase, AssertsCompiledSQL):
return "BIND(%s)" % compiler.visit_bindparam(element, **kw)
self.assert_compile(
- t.insert(),
+ t.insert(),
"INSERT INTO t (a, b) VALUES (BIND(:a), BIND(:b))",
{'a':1, 'b':2},
use_default_dialect=True