Fix IndexedQueue creation test invalid arguments

This commit is contained in:
Michael Bradley 2025-01-12 21:02:40 +13:00
parent 2cb2e97d7b
commit 16c1a4d390
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -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},
))