summaryrefslogtreecommitdiff
path: root/test/orm/test_lazy_relations.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/test_lazy_relations.py')
-rw-r--r--test/orm/test_lazy_relations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/test_lazy_relations.py b/test/orm/test_lazy_relations.py
index 66b1eb5e4..37d290b58 100644
--- a/test/orm/test_lazy_relations.py
+++ b/test/orm/test_lazy_relations.py
@@ -178,7 +178,7 @@ class LazyTest(_fixtures.FixtureTest):
sess = create_session()
q = sess.query(User)
- if testing.against('maxdb', 'mssql'):
+ if testing.against('mssql'):
l = q.limit(2).all()
assert self.static.user_all_result[:2] == l
else: