Commit 06f5a6f2 authored by Simon Giesecke's avatar Simon Giesecke

Problem: use of generic assertion macro

Solution: use more specific assertion macro
parent d4401b23
......@@ -159,7 +159,7 @@ int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint)
}
// if send_hwm_ < msg_cnt_, we should block at least once:
TEST_ASSERT (blocked_count > 0);
TEST_ASSERT_GREATER_THAN_INT (0, blocked_count);
// dequeue SUB socket again, to make sure XPUB has space to send the termination message
recv_count += receive (sub_socket, &is_termination);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment