Skip to content

Commit

Permalink
test UPDATE more time for notification processing
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvasko committed Nov 22, 2023
1 parent 625c570 commit 661101f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_yang_push_advanced.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ test_periodic_modify_filter(void **state)
char *ntf;

/* Establish periodic push */
st->rpc = nc_rpc_establishpush_periodic("ietf-datastores:running", "/edit2:*", NULL, NULL, 25, NULL, NC_PARAMTYPE_CONST);
st->rpc = nc_rpc_establishpush_periodic("ietf-datastores:running", "/edit2:*", NULL, NULL, 50, NULL, NC_PARAMTYPE_CONST);
st->msgtype = nc_send_rpc(st->nc_sess, st->rpc, 1000, &st->msgid);
assert_int_equal(st->msgtype, NC_MSG_RPC);
ASSERT_OK_SUB_NTF(st);
Expand All @@ -340,7 +340,7 @@ test_periodic_modify_filter(void **state)
FREE_TEST_VARS(st);

/* Modify the filter */
st->rpc = nc_rpc_modifypush_periodic(st->ntf_id, "ietf-datastores:running", "<first xmlns=\"ed1\"/>", NULL, 25,
st->rpc = nc_rpc_modifypush_periodic(st->ntf_id, "ietf-datastores:running", "<first xmlns=\"ed1\"/>", NULL, 50,
NULL, NC_PARAMTYPE_CONST);
st->msgtype = nc_send_rpc(st->nc_sess, st->rpc, 1000, &st->msgid);
assert_int_equal(st->msgtype, NC_MSG_RPC);
Expand Down

0 comments on commit 661101f

Please sign in to comment.