Don't do python 2 things in python 3
This commit is contained in:
parent
33f31652ea
commit
72bda6d901
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue