From: Mike Bayer Date: Sun, 8 Mar 2009 19:40:12 +0000 (+0000) Subject: take 2 X-Git-Tag: rel_0_5_3~10 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1b5d224df5e9393e7a8a89c7b29c08d189e89685;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git take 2 --- diff --git a/test/ext/serializer.py b/test/ext/serializer.py index 8e941ae795..7b7a467535 100644 --- a/test/ext/serializer.py +++ b/test/ext/serializer.py @@ -115,7 +115,7 @@ class SerializeTest(testing.ORMTest): eq_(list(q2.values(User.id, User.name)), [(9, u'fred')]) - @testing.exclude('sqlite', '<=', '3.5.9', 'id comparison failing on the buildbot') + @testing.exclude('sqlite', '<=', (3, 5, 9), 'id comparison failing on the buildbot') def test_aliases(self): u7, u8, u9, u10 = Session.query(User).order_by(User.id).all()