summaryrefslogtreecommitdiff
path: root/migrate/tests/changeset/test_constraint.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrate/tests/changeset/test_constraint.py')
-rw-r--r--migrate/tests/changeset/test_constraint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/migrate/tests/changeset/test_constraint.py b/migrate/tests/changeset/test_constraint.py
index d27554e..6421206 100644
--- a/migrate/tests/changeset/test_constraint.py
+++ b/migrate/tests/changeset/test_constraint.py
@@ -274,7 +274,7 @@ class TestAutoname(CommonTestConstraint):
self.table.insert(values={'id': 2, 'fkey': 2}).execute()
self.table.insert(values={'id': 1, 'fkey': 3}).execute()
- @fixture.usedb(not_supported=['oracle', 'sqlite'])
+ @fixture.usedb(not_supported=['oracle'])
def test_autoname_unique(self):
"""UniqueConstraints can guess their name if None is given"""
cons = UniqueConstraint(self.table.c.fkey)