File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
python/understack-workflows/tests Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -588,9 +588,9 @@ def test_calculate_destination_comprehensive_third_octet_zero(self):
588
588
589
589
for ip in test_ips :
590
590
destination = RouteSpec ._calculate_destination (ip )
591
- assert destination == ipaddress .IPv4Network ("100.126.0.0/17" ), (
592
- f"Failed for IP: { ip } "
593
- )
591
+ assert destination == ipaddress .IPv4Network (
592
+ "100.126.0.0/17 "
593
+ ), f"Failed for IP: { ip } "
594
594
595
595
def test_calculate_destination_comprehensive_third_octet_128 (self ):
596
596
"""Test comprehensive route destination calculation for third octet = 128."""
@@ -606,9 +606,9 @@ def test_calculate_destination_comprehensive_third_octet_128(self):
606
606
607
607
for ip in test_ips :
608
608
destination = RouteSpec ._calculate_destination (ip )
609
- assert destination == ipaddress .IPv4Network ("100.126.128.0/17" ), (
610
- f"Failed for IP: { ip } "
611
- )
609
+ assert destination == ipaddress .IPv4Network (
610
+ "100.126.128.0/17 "
611
+ ), f"Failed for IP: { ip } "
612
612
613
613
def test_calculate_destination_comprehensive_invalid_patterns (self ):
614
614
"""Test comprehensive error handling for all invalid third octet values."""
You can’t perform that action at this time.
0 commit comments