Don't do python 2 things in python 3

This commit is contained in:
Joshua Inkenbrandt 2016-01-09 18:29:21 -08:00
parent 33f31652ea
commit 72bda6d901

View File

@ -590,7 +590,7 @@ def test_reverse_query():
limit=4,
reverse=True)
expected = map(Decimal, [5, 4, 3, 2])
expected = [Decimal(5), Decimal(4), Decimal(3), Decimal(2)]
[r['created_at'] for r in results].should.equal(expected)