From: Michael Trier Date: Fri, 2 Jan 2009 18:25:00 +0000 (+0000) Subject: Corrected a UOW DefaultTest for mssql because it requires the identity column setup. X-Git-Tag: rel_0_5_0~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a69db2ae635be7bcd7ccf702afacf48cd44a48c5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Corrected a UOW DefaultTest for mssql because it requires the identity column setup. --- diff --git a/test/orm/unitofwork.py b/test/orm/unitofwork.py index 45ecc66e15..504ab7d823 100644 --- a/test/orm/unitofwork.py +++ b/test/orm/unitofwork.py @@ -866,7 +866,7 @@ class DefaultTest(_base.MappedTest): Column('id', Integer, primary_key=True), Column('data', String(50))) - if testing.against('postgres', 'oracle'): + if testing.against('postgres', 'oracle', 'mssql'): dt.append_column( Column('secondary_id', Integer, sa.Sequence('sec_id_seq'), unique=True))