Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentetsu committed Nov 7, 2024
1 parent 59ed829 commit b7559aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7559aa

Please sign in to comment.