From ae1dd893fa8e8ad844dfc159896939baebc267c1 Mon Sep 17 00:00:00 2001 From: slush Date: Mon, 23 Dec 2024 10:24:50 -0600 Subject: [PATCH] chore: typo fix --- tests/functional/test_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_fixtures.py b/tests/functional/test_fixtures.py index 7ae0ef6379..e2669b29b9 100644 --- a/tests/functional/test_fixtures.py +++ b/tests/functional/test_fixtures.py @@ -83,7 +83,7 @@ def test_isolation_restore_not_implemented(mocker, networks, fixtures): networks.active_provider = orig_provider -@pytest.mark.parametrize("snapshot_id", (0, 1, "123", tuple(b"123", 1))) +@pytest.mark.parametrize("snapshot_id", (0, 1, "123", (b"123", 1))) def test_isolation_snapshot_id_types(snapshot_id, fixtures): class IsolationManagerWithCustomSnapshot(IsolationManager): take_call_count = 0