Skip to content

Commit

Permalink
Fix status in ipcHandlerRequestEmptyQueue test
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbiesek committed Jan 11, 2023
1 parent 51ac86c commit a75b5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ipctest.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ ipcHandlerRequestEmptyQueue(void **state) {
// Empty Message queue
scopeReq = ipcRequestHandler(mqReadWriteDes, attr.mq_msgsize, &parseStatus, &uniqueId);
assert_null(scopeReq);
assert_int_equal(parseStatus, REQ_PARSE_RECEIVE_ERROR);
assert_int_equal(parseStatus, REQ_PARSE_RECEIVE_TIMEOUT_ERROR);
assert_int_equal(uniqueId, -1);

status = scope_mq_close(mqReadWriteDes);
Expand Down

0 comments on commit a75b5e5

Please sign in to comment.