diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 17:05:50 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 17:05:50 -0400 |
commit | 22ba1c43b792953ae6f791512d276739c8c09eae (patch) | |
tree | bdf9f639b01426a8a2e1c8c61d35533026dd4265 /test/ext/test_compiler.py | |
parent | 27913554a85c308d81e6c018669d0246ceecc639 (diff) | |
download | sqlalchemy-22ba1c43b792953ae6f791512d276739c8c09eae.tar.gz |
-whitespace bonanza, contd
Diffstat (limited to 'test/ext/test_compiler.py')
-rw-r--r-- | test/ext/test_compiler.py | 6 |
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 |