From dfa566f567a727665a07f254c6ee57d449af23e9 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Sat, 27 Feb 2021 11:31:09 +0100 Subject: [PATCH] task8.4: fix address parsing for RIOT-OS/RIOT#15992 --- 08-interop/test_spec08.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08-interop/test_spec08.py b/08-interop/test_spec08.py index 5d9fdb77..3c857a2a 100644 --- a/08-interop/test_spec08.py +++ b/08-interop/test_spec08.py @@ -66,7 +66,7 @@ def test_task08(riot_ctrl): _, gnrc_addr = lladdr(gnrc_node.ifconfig_list()) assert gnrc_addr.startswith("fe80::") res = lwip_node.cmd("ifconfig") - m = re.search(r"inet6\s+(?Pfe80:[0-9a-f:]+)", res) + m = re.search(r"inet6 addr:\s+(?Pfe80:[0-9a-f:]+)", res) assert m is not None lwip_addr = m.group("addr")