summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 17:19:00 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 17:19:00 -0400
commit7b24e458c7523694ab07acb31b67d1c00e7a266a (patch)
treee3f2319b6e9df82492ec9719bbfc2884b792a1a3 /test/dialect/test_postgresql.py
parent68a350d462b6840d6623a89565f8febf3a997830 (diff)
downloadsqlalchemy-7b24e458c7523694ab07acb31b67d1c00e7a266a.tar.gz
- move all the comments that got shoved below the fixture grabs back up
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index e276e5931..bbf476560 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -1458,10 +1458,11 @@ class MiscTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL):
@testing.provide_metadata
def test_index_reflection(self):
- metadata = self.metadata
""" Reflecting partial & expression-based indexes should warn
"""
+ metadata = self.metadata
+
t1 = Table('party', metadata, Column('id', String(10),
nullable=False), Column('name', String(20),
index=True), Column('aname', String(20)))