From 81cf16715117061b880464d5e5c8cb9729bf3274 Mon Sep 17 00:00:00 2001 From: Jesse Snyder Date: Fri, 13 Oct 2023 17:23:33 -0700 Subject: [PATCH] Missed a test fix --- test/test_griduniverse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test_griduniverse.py b/test/test_griduniverse.py index 48ce6027..6af39c79 100755 --- a/test/test_griduniverse.py +++ b/test/test_griduniverse.py @@ -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,