From 5d5700c40e0abc6c228c03c6261bdc6627a3e02a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 21 Oct 2013 23:21:11 -0400 Subject: [PATCH] - oursql returns a pure FP here which isn't exact --- lib/sqlalchemy/testing/suite/test_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/sqlalchemy/testing/suite/test_types.py b/lib/sqlalchemy/testing/suite/test_types.py index 5523523aa1..d04829a79b 100644 --- a/lib/sqlalchemy/testing/suite/test_types.py +++ b/lib/sqlalchemy/testing/suite/test_types.py @@ -345,11 +345,12 @@ class NumericTest(_LiteralRoundTripFixture, fixtures.TestBase): [15.7563], ) + @testing.requires.floats_to_four_decimals def test_render_literal_float(self): self._literal_round_trip( Float(4), [15.7563, decimal.Decimal("15.7563")], - [15.7563], + [15.7563,], ) def test_numeric_as_decimal(self): -- 2.47.3