File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
dpd-client/tests/integration_tests Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ async fn test_internal_ipv6_validation() {
502
502
503
503
// Test 1: IPv4-mapped IPv6 addresses should be rejected as invalid multicast
504
504
let ipv4_mapped_internal = types:: MulticastGroupCreateEntry {
505
- group_ip : "::ffff:224.1.1.1" . parse ( ) . unwrap ( ) , // IPv4-mapped IPv6
505
+ group_ip : "::ffff:224.1.1.1" . parse ( ) . unwrap ( ) , // IPv4-mapped IPv6
506
506
tag : Some ( "test_ipv4_mapped_internal" . to_string ( ) ) ,
507
507
sources : None ,
508
508
members : vec ! [ types:: MulticastGroupMember {
@@ -512,7 +512,10 @@ async fn test_internal_ipv6_validation() {
512
512
} ] ,
513
513
} ;
514
514
515
- let ipv4_mapped_res = switch. client . multicast_group_create ( & ipv4_mapped_internal) . await ;
515
+ let ipv4_mapped_res = switch
516
+ . client
517
+ . multicast_group_create ( & ipv4_mapped_internal)
518
+ . await ;
516
519
517
520
assert ! (
518
521
ipv4_mapped_res. is_err( ) ,
You can’t perform that action at this time.
0 commit comments