Skip to content

Commit a3b873f

Browse files
fix: correct test_zmq_write_read_roundtrip to match read() return signature
read() returns a single value, not a tuple. The test incorrectly unpacked into (result, ok) causing ValueError on CI.
1 parent 8889dac commit a3b873f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_concore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def recv_json_with_retry(self):
408408
concore.write("roundtrip_test", "data", original_data)
409409

410410
# Read should return original data (simtime stripped)
411-
result, ok = concore.read("roundtrip_test", "data", "[]")
411+
result = concore.read("roundtrip_test", "data", "[]")
412412
assert result == original_data
413413

414414

0 commit comments

Comments
 (0)