diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_ip6.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ip6.py b/test/test_ip6.py index c9efcbbc51c..884f793680d 100644 --- a/test/test_ip6.py +++ b/test/test_ip6.py @@ -84,7 +84,7 @@ class TestIPv6ND(VppTestCase): dst_ip = inet_ntop(AF_INET6, nsma) # NS is broadcast - self.assertEqual(rx[Ether].dst, "ff:ff:ff:ff:ff:ff") + self.assertEqual(rx[Ether].dst, in6_getnsmac(nsma)) # and from the router's MAC self.assertEqual(rx[Ether].src, intf.local_mac) |