From 16c1a4d390b56ff67396232620ccdab550862f6a Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 12 Jan 2025 21:02:40 +1300 Subject: [PATCH] Fix IndexedQueue creation test invalid arguments --- tests/indexed_queue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/indexed_queue.py b/tests/indexed_queue.py index 37b7cc2..b08afc6 100644 --- a/tests/indexed_queue.py +++ b/tests/indexed_queue.py @@ -20,9 +20,9 @@ def test_empty_creation(): [("a", 0), ("b", 1), ("c", 2)], ((0, 0), (1, 1), (2, 2)), ((0.0, 0.0), (1.0, 1.0), (2.0, 2.0)), - ((lambda: None, 0)), - ((Exception(), 0.0)), - (([], -1)), + ((lambda: None, 0),), + ((Exception(), 0.0),), + (([], -1),), {}, {"a": 0, "b": 1, "c": 2}, ))