Skip to content

Commit

Permalink
Merge pull request #212 from miri64/task8.4/fix/lwip-ifconfig
Browse files Browse the repository at this point in the history
task8.4: fix address parsing for RIOT-OS/RIOT#15992
  • Loading branch information
miri64 authored Mar 8, 2021
2 parents c3f897f + dfa566f commit 676d417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 08-interop/test_spec08.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+(?P<addr>fe80:[0-9a-f:]+)", res)
m = re.search(r"inet6 addr:\s+(?P<addr>fe80:[0-9a-f:]+)", res)
assert m is not None
lwip_addr = m.group("addr")

Expand Down

0 comments on commit 676d417

Please sign in to comment.