diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-05-22 08:38:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 08:38:53 +0200 |
commit | f0ac9aa4a75e8067ce4ad035af9c59e3855ecfb6 (patch) | |
tree | fcb70bea6f8d3486b1b47998d04adcb55e45895e /tests | |
parent | Merge pull request #13566 from LabNConsulting/chopps/analyze-improvement (diff) | |
parent | tests: pytest does not like return True from a test (diff) | |
download | frr-f0ac9aa4a75e8067ce4ad035af9c59e3855ecfb6.tar.xz frr-f0ac9aa4a75e8067ce4ad035af9c59e3855ecfb6.zip |
Merge pull request #13563 from donaldsharp/remove_true
tests: pytest does not like return True from a test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/topotests/bgp_remove_private_as/test_bgp_remove_private_as.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/topotests/bgp_remove_private_as/test_bgp_remove_private_as.py b/tests/topotests/bgp_remove_private_as/test_bgp_remove_private_as.py index 113423744..e48f81c53 100644 --- a/tests/topotests/bgp_remove_private_as/test_bgp_remove_private_as.py +++ b/tests/topotests/bgp_remove_private_as/test_bgp_remove_private_as.py @@ -409,8 +409,6 @@ def test_bgp_remove_private_as(): # the old flag after each iteration so we only test the flags we expect. _change_remove_type(rmv_type, "del") - return True - if __name__ == "__main__": args = ["-s"] + sys.argv[1:] |