diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-08 15:00:37 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-08 15:00:37 -0500 |
| commit | 1ea2ac12614ebba060dbe177dfd201ae206be088 (patch) | |
| tree | 98665059f4b8ae41c3adb37d80052df78ec0c503 | |
| parent | 9d5d0bbd83eba94f45d3d5f62b57b681a9947a5e (diff) | |
| download | sqlalchemy-1ea2ac12614ebba060dbe177dfd201ae206be088.tar.gz | |
add oursql to the list of offenders...
| -rw-r--r-- | test/sql/test_types.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index bb3a449ca..73d99ac6a 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -1416,8 +1416,8 @@ class NumericRawSQLTest(TestBase): val = testing.db.execute("select val from t").scalar() assert isinstance(val, float) - # some DBs have unusual float handling - if testing.against('oracle+cx_oracle'): + # some DBAPIs have unusual float handling + if testing.against('oracle+cx_oracle', 'mysql+oursql'): eq_(round_decimal(val, 3), 46.583) else: eq_(val, 46.583) |
