Skip to content

Commit d6bbd40

Browse files
authored
Merge pull request #2319 from mazunki/fix-ipv6-slaac-zoneid
use proper zone-id for slaac test
2 parents a019a94 + e191006 commit d6bbd40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/net/integration/slaac/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def Slaac_test(trigger_line):
2626
print(color.INFO("<Test.py>"), "Trying to ping")
2727
time.sleep(1)
2828
try:
29-
command = ["ping", "-I", "bridge43", ip_string.rstrip(), "-c",
29+
command = ["ping", ip_string.rstrip() + "%bridge43", "-c",
3030
str(ping_count) ]
3131
print(color.DATA(" ".join(command)))
3232
print(subprocess.check_output(command))

0 commit comments

Comments
 (0)