diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-13 12:34:41 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-13 12:34:41 -0400 |
| commit | e04b693e7c7c216526a7e6be6f4c074f4f400c3c (patch) | |
| tree | 1faac67f8c1b33106a7322b2232db2bdc88e12fc /test/dialect | |
| parent | 50d2432a9efa65c9798ef207e3f887cb5c0071e1 (diff) | |
| download | sqlalchemy-e04b693e7c7c216526a7e6be6f4c074f4f400c3c.tar.gz | |
- this test passes now in more recent mysqlconnector
Diffstat (limited to 'test/dialect')
| -rw-r--r-- | test/dialect/mysql/test_types.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 75dbe15e0..e65acc6db 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -154,10 +154,8 @@ class TypesTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL): res ) - @testing.fails_if( - lambda: testing.against("mysql+mysqlconnector") - and not util.py3k, - "bug in mysqlconnector; http://bugs.mysql.com/bug.php?id=73266") + # fixed in mysql-connector as of 2.0.1, + # see http://bugs.mysql.com/bug.php?id=73266 @testing.provide_metadata def test_precision_float_roundtrip(self): t = Table('t', self.metadata, |
