From: Chris Withers Date: Tue, 13 Apr 2010 00:55:32 +0000 (+0100) Subject: correct ordering X-Git-Tag: rel_0_6_0~23^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7339ee67e16f32b828ed4a44cba99cd620548d6d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git correct ordering --- diff --git a/test/ext/test_declarative.py b/test/ext/test_declarative.py index 58acfdb61f..0c7aef6dc8 100644 --- a/test/ext/test_declarative.py +++ b/test/ext/test_declarative.py @@ -2252,7 +2252,7 @@ class DeclarativeMixinTest(DeclarativeTestBase): eq_(Generic.__table__.name,'generic') eq_(Specific.__table__.name,'specific') eq_(Generic.__table__.c.keys(),['python_type', 'timestamp', 'id']) - eq_(Specific.__table__.c.keys(),['timestamp', 'id']) + eq_(Specific.__table__.c.keys(),['id', 'timestamp']) eq_(Generic.__table__.kwargs,{'mysql_engine': 'InnoDB'}) eq_(Specific.__table__.kwargs,{'mysql_engine': 'InnoDB'})