We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c74b2 commit 96dff2fCopy full SHA for 96dff2f
tests/net/dhcpv6/src/main.c
@@ -413,13 +413,13 @@ static void verify_dhcpv6_oro_sol_max_rt(struct net_if *iface,
413
net_pkt_cursor_backup(pkt, &backup);
414
415
ret = dhcpv6_find_option(pkt, DHCPV6_OPTION_CODE_ORO, &length);
416
- zassert_ok(ret, 0, "ORO option not found");
+ zassert_ok(ret, "ORO option not found");
417
zassert_true(length >= sizeof(uint16_t) && length % sizeof(uint16_t) == 0,
418
"Invalid ORO length");
419
420
while (length >= sizeof(uint16_t)) {
421
ret = net_pkt_read_be16(pkt, &oro);
422
- zassert_ok(ret, 0, "ORO read error");
+ zassert_ok(ret, "ORO read error");
423
length -= sizeof(uint16_t);
424
425
if (oro == DHCPV6_OPTION_CODE_SOL_MAX_RT) {
0 commit comments