From a69db2ae635be7bcd7ccf702afacf48cd44a48c5 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Fri, 2 Jan 2009 18:25:00 +0000 Subject: [PATCH] Corrected a UOW DefaultTest for mssql because it requires the identity column setup. --- test/orm/unitofwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.47.3