diff options
author | Ants Aasma <ants.aasma@gmail.com> | 2007-10-06 01:31:22 +0000 |
---|---|---|
committer | Ants Aasma <ants.aasma@gmail.com> | 2007-10-06 01:31:22 +0000 |
commit | d87ecbdd003b4273e1e259b6251c49069258a876 (patch) | |
tree | 7bcceb1a696fc7e801659af09a8fc3802e253a06 /test/dialect/postgres.py | |
parent | f97414b5203d2c05ccaf18942ecd7f42a7c4611f (diff) | |
download | sqlalchemy-d87ecbdd003b4273e1e259b6251c49069258a876.tar.gz |
a typo on postgres returning test version check - change <8.4 -> <8.2
Diffstat (limited to 'test/dialect/postgres.py')
-rw-r--r-- | test/dialect/postgres.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py index 24fa91705..82f41f80a 100644 --- a/test/dialect/postgres.py +++ b/test/dialect/postgres.py @@ -58,7 +58,7 @@ class CompileTest(SQLCompileTest): class ReturningTest(AssertMixin): @testing.supported('postgres') - @testing.exclude('postgres', '<', (8, 4)) + @testing.exclude('postgres', '<', (8, 2)) def test_update_returning(self): meta = MetaData(testbase.db) table = Table('tables', meta, @@ -79,7 +79,7 @@ class ReturningTest(AssertMixin): table.drop() @testing.supported('postgres') - @testing.exclude('postgres', '<', (8, 4)) + @testing.exclude('postgres', '<', (8, 2)) def test_insert_returning(self): meta = MetaData(testbase.db) table = Table('tables', meta, |