]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
ARG
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 3 Jun 2011 01:35:27 +0000 (21:35 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 3 Jun 2011 01:35:27 +0000 (21:35 -0400)
test/engine/test_reflection.py

index acce8b6845e100ac5ab099f2badda20d55a9f794..e37125aef9892cfb044938df993723b16ed9801d 100644 (file)
@@ -1164,7 +1164,9 @@ class CaseSensitiveTest(fixtures.TablesTest):
         eq_(t1.name, "SomeTable")
         assert t1.c.x is not None
 
-    @testing.fails_if(lambda: not testing.requires._has_mysql_fully_case_sensitive())
+    @testing.fails_if(lambda: 
+            testing.against('mysql') and 
+            not testing.requires._has_mysql_fully_case_sensitive())
     def test_reflect_via_fk(self):
         m = MetaData()
         t2 = Table("SomeOtherTable", m, autoload=True, autoload_with=testing.db)