Fix broken test

This commit is contained in:
Michael Bradley 2025-01-09 23:01:44 +13:00
parent 3d91627253
commit 494168597e
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -27,7 +27,7 @@ def test_empty_creation():
{"a": 0, "b": 1, "c": 2},
))
def test_creation(items: PairedQueueInitializer):
queue = PairedQueue()
queue = PairedQueue(items)
assert len(queue) == len(items)