From 961da32afb4f54c65badc2cb9a79605cc2a230c6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 17 Sep 2014 15:40:09 -0400 Subject: [PATCH] - not sure what this is testing but remove the self.l that might be contributing to pypy not cleaning up on this one Conflicts: test/orm/test_eager_relations.py --- test/orm/test_eager_relations.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/orm/test_eager_relations.py b/test/orm/test_eager_relations.py index 645d9e00a7..5ea09e917d 100644 --- a/test/orm/test_eager_relations.py +++ b/test/orm/test_eager_relations.py @@ -1103,8 +1103,9 @@ class EagerTest(_fixtures.FixtureTest, testing.AssertsCompiledSQL): orders = relationship(Order, lazy = False, order_by=orders.c.id), )) q = create_session().query(User) - l = q.all() - eq_(self.static.user_all_result, q.order_by(User.id).all()) + def go(): + eq_(self.static.user_all_result, q.order_by(User.id).all()) + self.assert_sql_count(testing.db, go, 1) def test_against_select(self): """test eager loading of a mapper which is against a select""" -- 2.47.3