From: Brad Allen Date: Sun, 21 Mar 2010 01:38:51 +0000 (-0600) Subject: SelfRefTest was not getting properly filtered out of mssql tests (__unsupported_on__... X-Git-Tag: rel_0_6beta3~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f4e98ae841e078370e4a397232ebc7d730673ab;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git SelfRefTest was not getting properly filtered out of mssql tests (__unsupported_on__ value needs to be a sequence of dialect names) --- diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index 806558a2bb..16504f2a23 100644 --- a/test/orm/test_naturalpks.py +++ b/test/orm/test_naturalpks.py @@ -423,7 +423,7 @@ class ReversePKsTest(_base.MappedTest): class SelfRefTest(_base.MappedTest): - __unsupported_on__ = 'mssql' # mssql doesn't allow ON UPDATE on self-referential keys + __unsupported_on__ = ('mssql',) # mssql doesn't allow ON UPDATE on self-referential keys @classmethod def define_tables(cls, metadata):