Skip to content

Commit

Permalink
Missed a test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesnyder committed Oct 14, 2023
1 parent 00e14cc commit 81cf167
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_griduniverse.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,21 +257,21 @@ def relevant_keys(dictionary):
{
"id": 1,
"item_id": "stone",
"position": [1, 0],
"position": [0, 1],
"remaining_uses": 1,
},
{
"id": 2,
"item_id": "gooseberry_bush",
"position": [3, 0],
"position": [0, 3],
"remaining_uses": 3,
},
],
"players": [
{
"color": "YELLOW",
"id": 1,
"position": [4, 0],
"id": "1",
"position": [0, 4],
}
],
"round": 0,
Expand Down

0 comments on commit 81cf167

Please sign in to comment.