diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-02 21:35:27 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-02 21:35:27 -0400 |
| commit | 4d92dc9730f94677a4f485811552926baeca5bd3 (patch) | |
| tree | adaef811f39d52ac30e5c83aea93f90046d40e5b /test/engine/test_reflection.py | |
| parent | 16073ae0446ea91e38443fa21cd128ef060626a1 (diff) | |
| download | sqlalchemy-4d92dc9730f94677a4f485811552926baeca5bd3.tar.gz | |
ARG
Diffstat (limited to 'test/engine/test_reflection.py')
| -rw-r--r-- | test/engine/test_reflection.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index acce8b684..e37125aef 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -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) |
