summaryrefslogtreecommitdiff
path: root/tests/topotests/lib/topotest.py
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2020-09-23 16:06:37 -0400
committerGitHub <noreply@github.com>2020-09-23 16:06:37 -0400
commitccda0eadac743dd4e9b02d6c28b226ef6e8f90b3 (patch)
tree7e7dc46fa6e9c96e0a34296fa5d43139817fb170 /tests/topotests/lib/topotest.py
parent4020564a3cc230d4ef14d39b69d15e1c967d33e7 (diff)
parent5a3cf85391b3665b5344d577e98aaa29a1927818 (diff)
Merge pull request #7155 from donaldsharp/TRAP
Offload/Trap
Diffstat (limited to 'tests/topotests/lib/topotest.py')
-rw-r--r--tests/topotests/lib/topotest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py
index d26e7c8881..00bfac4103 100644
--- a/tests/topotests/lib/topotest.py
+++ b/tests/topotests/lib/topotest.py
@@ -628,7 +628,7 @@ def ip4_route_zebra(node, vrf_name=None):
lines = output.splitlines()
header_found = False
while lines and (not lines[0].strip() or not header_found):
- if "> - selected route" in lines[0]:
+ if "o - offload failure" in lines[0]:
header_found = True
lines = lines[1:]
return "\n".join(lines)
@@ -654,7 +654,7 @@ def ip6_route_zebra(node, vrf_name=None):
lines = output.splitlines()
header_found = False
while lines and (not lines[0].strip() or not header_found):
- if "> - selected route" in lines[0]:
+ if "o - offload failure" in lines[0]:
header_found = True
lines = lines[1:]