@@ -708,7 +708,7 @@ static void add_mcast_route_and_verify(struct net_if *iface, struct in6_addr *ad
708
708
zassert_ok (k_sem_take (& wait_data , K_MSEC (WAIT_TIME )), "Timeout while waiting for a report" );
709
709
710
710
zassert_equal (info -> records_count , 1 , "Invalid number of reported addresses" );
711
- zassert_equal (info -> records [0 ].record_type , NET_IPV6_MLDv2_MODE_IS_EXCLUDE ,
711
+ zassert_equal (info -> records [0 ].record_type , NET_IPV6_MLDv2_CHANGE_TO_EXCLUDE_MODE ,
712
712
"Invalid MLDv2 record type" );
713
713
zassert_mem_equal (& info -> records [0 ].mcast_addr , addr ,
714
714
sizeof (struct in6_addr ), "Invalid reported address" );
@@ -731,7 +731,7 @@ static void del_mcast_route_and_verify(struct net_if *iface, struct in6_addr *ad
731
731
zassert_ok (k_sem_take (& wait_data , K_MSEC (WAIT_TIME )), "Timeout while waiting for a report" );
732
732
733
733
zassert_equal (info -> records_count , 1 , "Invalid number of reported addresses" );
734
- zassert_equal (info -> records [0 ].record_type , NET_IPV6_MLDv2_MODE_IS_INCLUDE ,
734
+ zassert_equal (info -> records [0 ].record_type , NET_IPV6_MLDv2_CHANGE_TO_INCLUDE_MODE ,
735
735
"Invalid MLDv2 record type" );
736
736
zassert_mem_equal (& info -> records [0 ].mcast_addr , addr ,
737
737
sizeof (struct in6_addr ), "Invalid reported address" );
0 commit comments