From: Mike Bayer Date: Thu, 11 Apr 2013 23:38:49 +0000 (-0400) Subject: - unit test failing on python3.3 + psycopg2, add an order by X-Git-Tag: rel_0_8_1~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b19f3db87085b96e843169252d5c7e2c2d8c428b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - unit test failing on python3.3 + psycopg2, add an order by --- diff --git a/test/orm/test_joins.py b/test/orm/test_joins.py index 8fd38a680e..4c0a193a0d 100644 --- a/test/orm/test_joins.py +++ b/test/orm/test_joins.py @@ -2105,7 +2105,7 @@ class SelfReferentialM2MTest(fixtures.MappedTest): sess = create_session() eq_(sess.query(Node).filter(Node.children.any(Node.data == 'n3' - )).all(), [Node(data='n1'), Node(data='n2')]) + )).order_by(Node.data).all(), [Node(data='n1'), Node(data='n2')]) def test_contains(self): Node = self.classes.Node