diff options
author | Christian Hopps <chopps@labn.net> | 2023-05-19 15:43:06 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-05-28 11:13:22 +0200 |
commit | 898499a50f54732f7acd57229e7bb2a6a56b7e5d (patch) | |
tree | bb620960ec77365d84624901664697c69ef93981 /tests/topotests/lib/topotest.py | |
parent | Merge pull request #13611 from donaldsharp/logger_warn (diff) | |
download | frr-898499a50f54732f7acd57229e7bb2a6a56b7e5d.tar.xz frr-898499a50f54732f7acd57229e7bb2a6a56b7e5d.zip |
tests: python-foo assure foo[0] is on a list not dict_values object
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to '')
-rw-r--r-- | tests/topotests/lib/topotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index 4520300fd..0e96921b7 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -988,7 +988,7 @@ def checkAddressSanitizerError(output, router, component, logdir=""): ) if addressSanitizerLog: # Find Calling Test. Could be multiple steps back - testframe = sys._current_frames().values()[0] + testframe = list(sys._current_frames().values())[0] level = 0 while level < 10: test = os.path.splitext( |