diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 17:19:00 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 17:19:00 -0400 |
commit | 7b24e458c7523694ab07acb31b67d1c00e7a266a (patch) | |
tree | e3f2319b6e9df82492ec9719bbfc2884b792a1a3 /test/dialect/test_postgresql.py | |
parent | 68a350d462b6840d6623a89565f8febf3a997830 (diff) | |
download | sqlalchemy-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.py | 3 |
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))) |