Commit 1a6b2b9f1978e0c9d082054ef46266d397783073
1 parent
b76b3952
Missing message in unit tests for modbus_send_raw_request
Showing
1 changed file
with
1 additions
and
0 deletions
tests/unit-test-client.c
| ... | ... | @@ -616,6 +616,7 @@ int main(int argc, char *argv[]) |
| 616 | 616 | req_length = modbus_send_raw_request(ctx, raw_req, |
| 617 | 617 | RAW_REQ_LENGTH * sizeof(uint8_t)); |
| 618 | 618 | |
| 619 | + printf("* modbus_send_raw_request: "); | |
| 619 | 620 | if ((use_backend == RTU && req_length == (RAW_REQ_LENGTH + 2)) || |
| 620 | 621 | ((use_backend == TCP || use_backend == TCP_PI) && |
| 621 | 622 | req_length == (RAW_REQ_LENGTH + 6))) { | ... | ... |