summaryrefslogtreecommitdiff
path: root/test/orm/query.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/query.py')
-rw-r--r--test/orm/query.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/orm/query.py b/test/orm/query.py
index d2550427c..911155692 100644
--- a/test/orm/query.py
+++ b/test/orm/query.py
@@ -16,6 +16,7 @@ from orm import _fixtures
from sqlalchemy.orm.util import join, outerjoin, with_parent
+
class QueryTest(FixtureTest):
keep_mappers = True
keep_data = True
@@ -414,7 +415,7 @@ class FilterTest(QueryTest):
assert [User(id=10)] == sess.query(User).outerjoin("addresses", aliased=True).filter(~User.addresses.any()).all()
- @testing.unsupported('maxdb', 'can dump core')
+ @testing.crashes('maxdb', 'can dump core')
def test_has(self):
sess = create_session()
assert [Address(id=5)] == sess.query(Address).filter(Address.user.has(name='fred')).all()