From 1ea2ac12614ebba060dbe177dfd201ae206be088 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 8 Dec 2010 15:00:37 -0500 Subject: [PATCH] add oursql to the list of offenders... --- test/sql/test_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sql/test_types.py b/test/sql/test_types.py index bb3a449ca7..73d99ac6a4 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) -- 2.47.2