diff options
| author | ckishimo <carles.kishimoto@gmail.com> | 2021-03-17 09:35:47 +0100 |
|---|---|---|
| committer | ckishimo <carles.kishimoto@gmail.com> | 2021-03-17 09:35:47 +0100 |
| commit | d205f01e1d5641ed81f37ccf081e1a93af9da34c (patch) | |
| tree | 7f896e4b4f871b07dde097cdc7b0a5c4e027f9d9 | |
| parent | 9b1bb522e09ccaad7165ff4cda54b04c2985b6c6 (diff) | |
tests: fix too many arguments for logging
Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
| -rw-r--r-- | tests/topotests/lib/ospf.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/topotests/lib/ospf.py b/tests/topotests/lib/ospf.py index 9bbae95095..9f642411b5 100644 --- a/tests/topotests/lib/ospf.py +++ b/tests/topotests/lib/ospf.py @@ -344,10 +344,9 @@ def config_ospf_interface(tgen, topo, input_dict=None, build=False, load_config= for lnk in input_dict[router]["links"].keys(): if "ospf" not in input_dict[router]["links"][lnk]: logger.debug( - "Router %s: ospf configs is not present in" - "input_dict, passed input_dict", - router, - input_dict, + "Router %s: ospf config is not present in" + "input_dict", + router ) continue ospf_data = input_dict[router]["links"][lnk]["ospf"] |
