Skip to content

Commit

Permalink
Fix backend test
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc authored Aug 15, 2023
1 parent fe5abf7 commit 1a6b9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/test_wire.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def test_search_sort(client, app):
resp = client.get("/wire/search?sort=versioncreated:asc")
data = json.loads(resp.get_data())
assert "urn:localhost:weather" == data["_items"][0]["_id"]
# //

resp = client.get("/wire/search?sort=versioncreated:desc")
data = json.loads(resp.get_data())
assert "urn:localhost:weather" == data["_items"][2]["_id"]
Expand Down

0 comments on commit 1a6b9b7

Please sign in to comment.