Skip to content

Commit

Permalink
fix(c): update test case to avoid private field access
Browse files Browse the repository at this point in the history
  • Loading branch information
mchitre committed Dec 3, 2024
1 parent 3e1ef2c commit 4dc2ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateways/c/tests/test_fjage.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ int main(int argc, char* argv[]) {
fjage_msg_destroy(msg);
msg = fjage_msg_create("org.arl.fjage.shell.ShellExecReq", FJAGE_REQUEST);
fjage_msg_set_recipient(msg, aid);
fjage_msg_add_string(msg, "cmd", "ps");
fjage_msg_add_string(msg, "command", "ps");
msg = fjage_request(gw, msg, 1000);
test_assert("request", msg != NULL && fjage_msg_get_performative(msg) == FJAGE_AGREE);
fjage_msg_destroy(msg);
Expand Down

0 comments on commit 4dc2ab0

Please sign in to comment.