diff --git a/petl/test/test_comparison.py b/petl/test/test_comparison.py index 94bf3637..cbf041d7 100644 --- a/petl/test/test_comparison.py +++ b/petl/test/test_comparison.py @@ -2,6 +2,7 @@ from datetime import datetime +from decimal import Decimal from petl.test.helpers import eq_ @@ -29,9 +30,9 @@ def test_comparable(): eq_(e, a) # mixed numeric - d = [3., 1, 2.5] + d = [3., 1, 2.5, Decimal('1.5')] a = sorted(d, key=Comparable) - e = [1, 2.5, 3.] + e = [1, Decimal('1.5'), 2.5, 3.] eq_(e, a) # mixed numeric and bool