From b7559aa6287c7912b0aab81778ff795a8bac8543 Mon Sep 17 00:00:00 2001 From: Zentetsu <10742751+Zentetsu@users.noreply.github.com> Date: Thu, 7 Nov 2024 16:41:37 +0900 Subject: [PATCH] Fixing test --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index 61e020e..c5a9880 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -112,7 +112,7 @@ def test_bool(self) -> None: def test_dict(self) -> None: """Test client creation containing a dictionary.""" try: - c = SharedMemory("test5", {"a": 1, "b": np.zeros((64, 38, 3), dtype=np.uint8)}, size=1024, client=True, silent=True) + c = SharedMemory("test5", {"a": 1, "b": np.zeros((64, 38, 3), dtype=np.uint8)}, client=True, silent=True) res1 = type(c.getValue()) is dict res2 = c.getType() is dict res3 = c.getValue()["a"] == 1