Don't do python 2 things in python 3
This commit is contained in:
parent
33f31652ea
commit
72bda6d901
@ -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)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user