Skip to content

Commit 578d926

Browse files
..
1 parent 8570231 commit 578d926

File tree

1 file changed

+8
-2
lines changed
  • dpd-client/tests/integration_tests

1 file changed

+8
-2
lines changed

dpd-client/tests/integration_tests/mcast.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4558,7 +4558,10 @@ async fn test_multicast_group_id_recycling() {
45584558
.try_collect::<Vec<_>>()
45594559
.await
45604560
.expect("Should be able to list groups");
4561-
assert!(!groups_after_delete1.iter().any(|g| g.group_ip == group1_ip), "Group1 should be deleted");
4561+
assert!(
4562+
!groups_after_delete1.iter().any(|g| g.group_ip == group1_ip),
4563+
"Group1 should be deleted"
4564+
);
45624565

45634566
// Create third group - should reuse the first group's ID
45644567
let group3 = create_test_multicast_group(
@@ -4596,7 +4599,10 @@ async fn test_multicast_group_id_recycling() {
45964599
.try_collect::<Vec<_>>()
45974600
.await
45984601
.expect("Should be able to list groups");
4599-
assert!(!groups_after_delete2.iter().any(|g| g.group_ip == group2_ip), "Group2 should be deleted");
4602+
assert!(
4603+
!groups_after_delete2.iter().any(|g| g.group_ip == group2_ip),
4604+
"Group2 should be deleted"
4605+
);
46004606

46014607
let group4_ip = IpAddr::V6(Ipv6Addr::new(0xff05, 0, 0, 0, 0, 0, 0, 13));
46024608
let group4 = create_test_multicast_group(

0 commit comments

Comments
 (0)