summaryrefslogtreecommitdiff
path: root/tests/test_postgresql.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_postgresql.py')
-rw-r--r--tests/test_postgresql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_postgresql.py b/tests/test_postgresql.py
index e52b555..dadb4b9 100644
--- a/tests/test_postgresql.py
+++ b/tests/test_postgresql.py
@@ -69,7 +69,7 @@ class PostgresqlOpTest(TestBase):
"CREATE INDEX geocoded ON locations (coordinates) "
"WHERE locations.coordinates != Null")
- @config.requirements.fail_before_sqla_110
+ # should fail with SQLAlchemy < 1.1
def test_create_index_postgresql_concurrently(self):
context = op_fixture("postgresql")
op.create_index(
@@ -80,7 +80,7 @@ class PostgresqlOpTest(TestBase):
context.assert_(
"CREATE INDEX CONCURRENTLY geocoded ON locations (coordinates)")
- @config.requirements.fail_before_sqla_110
+ # should fail with SQLAlchemy < 1.1
def test_drop_index_postgresql_concurrently(self):
context = op_fixture("postgresql")
op.drop_index(