From 08a548857813ae9e8f91c4c2bcee0c3a2b28eff1 Mon Sep 17 00:00:00 2001 From: drc38 <20024196+drc38@users.noreply.github.com> Date: Fri, 20 Oct 2023 13:37:17 +1300 Subject: [PATCH] Change uniqueid to string --- tests/v16/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/v16/conftest.py b/tests/v16/conftest.py index 70faecd45..25ec09dc0 100644 --- a/tests/v16/conftest.py +++ b/tests/v16/conftest.py @@ -19,7 +19,7 @@ def heartbeat_call(): @pytest.fixture def notsupported_call(): - return Call(unique_id=1, action="InvalidAction", payload={}).to_json() + return Call(unique_id="1", action="InvalidAction", payload={}).to_json() @pytest.fixture