diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-01-08 15:01:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-08 15:01:45 +0200 |
| commit | 9932aa1200cdef5eddeec7bd184796616db84b04 (patch) | |
| tree | f4efade0f985c1afce9ad5f1fe107a48aaa0eb90 /tests/topotests/lib/common_config.py | |
| parent | d03a07b6ddc0b8650b6acc27da2fe62de6024326 (diff) | |
| parent | 662aa246aaad3ffc8eed8639dad899f4020fdb3c (diff) | |
Merge pull request #7833 from donaldsharp/gr_tests
tests: Fix gr_tests
Diffstat (limited to 'tests/topotests/lib/common_config.py')
| -rw-r--r-- | tests/topotests/lib/common_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/lib/common_config.py b/tests/topotests/lib/common_config.py index a45b595a5b..27efecb762 100644 --- a/tests/topotests/lib/common_config.py +++ b/tests/topotests/lib/common_config.py @@ -2449,9 +2449,9 @@ def shutdown_bringup_interface(tgen, dut, intf_name, ifaceaction=False): router_list = tgen.routers() if ifaceaction: - logger.info("Bringing up interface : {}".format(intf_name)) + logger.info("Bringing up interface {} : {}".format(dut, intf_name)) else: - logger.info("Shutting down interface : {}".format(intf_name)) + logger.info("Shutting down interface {} : {}".format(dut, intf_name)) interface_set_status(router_list[dut], intf_name, ifaceaction) |
