]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Corrected missing declaration in the mssql dialect test.
authorMichael Trier <mtrier@gmail.com>
Tue, 21 Oct 2008 03:21:16 +0000 (03:21 +0000)
committerMichael Trier <mtrier@gmail.com>
Tue, 21 Oct 2008 03:21:16 +0000 (03:21 +0000)
test/dialect/mssql.py

index 4708cc28c4cfcc93bc2f0775d605adb00f848f18..a2fcae8047bf982b68fd4db717c802d30887e4af 100755 (executable)
@@ -10,6 +10,7 @@ from testlib import *
 
 
 class CompileTest(TestBase, AssertsCompiledSQL):
+    __only_on__ = 'mssql'
     __dialect__ = mssql.MSSQLDialect()
 
     def test_insert(self):