add oursql to the list of offenders...

This commit is contained in:
Mike Bayer
2010-12-08 15:00:37 -05:00
parent 9d5d0bbd83
commit 1ea2ac1261
+2 -2
View File
@@ -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)