summaryrefslogtreecommitdiff
path: root/test/sql/test_quote.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-01-02 14:23:42 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-01-02 14:23:42 -0500
commit350aed3fdb9f1e73e69655e53f44ca6a91c196da (patch)
tree3d2a128667b5f6ca6d0b4e1f4865fc98aac6b60b /test/sql/test_quote.py
parent71f92436bdc86f30e2c21d8f5244733601e8c39e (diff)
downloadsqlalchemy-350aed3fdb9f1e73e69655e53f44ca6a91c196da.tar.gz
- whitespace removal bonanza
Diffstat (limited to 'test/sql/test_quote.py')
-rw-r--r--test/sql/test_quote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py
index e880388d7..2aa5086c6 100644
--- a/test/sql/test_quote.py
+++ b/test/sql/test_quote.py
@@ -96,7 +96,7 @@ class QuoteTest(TestBase, AssertsCompiledSQL):
'''SELECT 1 FROM (SELECT "foo"."t1"."col1" AS "col1" FROM '''\
'''"foo"."t1") AS anon WHERE anon."col1" = :col1_1'''
)
-
+
metadata = MetaData()
t1 = Table('TableOne', metadata,
Column('ColumnOne', Integer, quote=False), quote=False, schema="FooBar", quote_schema=False)
@@ -105,7 +105,7 @@ class QuoteTest(TestBase, AssertsCompiledSQL):
self.assert_compile(t1.select().apply_labels(),
"SELECT FooBar.TableOne.ColumnOne AS "\
"FooBar_TableOne_ColumnOne FROM FooBar.TableOne" # TODO: is this what we really want here ? what if table/schema
- # *are* quoted?
+ # *are* quoted?
)
a = t1.select().alias('anon')