summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/topotests/lib/topotest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py
index 60f6c9f943..5cc1a6981d 100644
--- a/tests/topotests/lib/topotest.py
+++ b/tests/topotests/lib/topotest.py
@@ -1723,7 +1723,7 @@ class Router(Node):
interface = ""
ll_per_if_count = 0
for line in ifaces:
- m = re.search("[0-9]+: ([^:@]+)[@if0-9:]+ <", line)
+ m = re.search("[0-9]+: ([^:@]+)[-@a-z0-9:]+ <", line)
if m:
interface = m.group(1)
ll_per_if_count = 0