diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-11-25 14:22:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-25 14:22:10 -0500 |
| commit | 3abf06b722c83c47255a9e1245770f55b17f2d38 (patch) | |
| tree | 26ea6a0bacb7866f1475a77c70bff6bba76d75e0 /tests/topotests/all-protocol-startup/test_all_protocol_startup.py | |
| parent | 68cd847ee68e8b62d079cb0c683848ad87bdf6ee (diff) | |
| parent | 10870bbc206f79dc125f33fe6962fe2ac873ada1 (diff) | |
Merge pull request #7607 from pguibert6WIND/topo_python3_preparation
Topo python3 preparation
Diffstat (limited to 'tests/topotests/all-protocol-startup/test_all_protocol_startup.py')
| -rw-r--r-- | tests/topotests/all-protocol-startup/test_all_protocol_startup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py index 0254ff6af6..96b88914a7 100644 --- a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py +++ b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py @@ -1065,7 +1065,7 @@ def test_bgp_ipv4(): if not success: resultstr = "No template matched.\n" - for f in diffresult.iterkeys(): + for f in diffresult.keys(): resultstr += "template %s: r%s failed SHOW BGP IPv4 check:\n%s\n" % ( f, i, @@ -1134,7 +1134,7 @@ def test_bgp_ipv6(): if not success: resultstr = "No template matched.\n" - for f in diffresult.iterkeys(): + for f in diffresult.keys(): resultstr += "template %s: r%s failed SHOW BGP IPv6 check:\n%s\n" % ( f, i, |
