diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-03-02 09:30:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-02 09:30:06 +0200 |
| commit | c103ac43dea8087e33e62dec69cee2d79e362ed5 (patch) | |
| tree | 82dc7576b9642d50ae050803cbf274fc8229acf7 /tests/topotests/all-protocol-startup/test_all_protocol_startup.py | |
| parent | 3ca7090fdcdda8dc8ab0d96ed1a2c7a0a700aaf3 (diff) | |
| parent | 5980ad0ae0352ba3865ee17cd9bf97bc65e35474 (diff) | |
Merge pull request #8172 from donaldsharp/more_pytest_bgp
More pytest stuff
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 f7ed29782d..afe546d502 100644 --- a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py +++ b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py @@ -352,7 +352,7 @@ def test_converge_protocols(): actual = ( net["r%s" % i] .cmd( - 'vtysh -c "show ip route" | sed -e \'/^Codes: /,/^\s*$/d\' | env LC_ALL=en_US.UTF-8 sort 2> /dev/null' + "vtysh -c \"show ip route\" | sed -e '/^Codes: /,/^\s*$/d' | env LC_ALL=en_US.UTF-8 sort 2> /dev/null" ) .rstrip() ) @@ -383,7 +383,7 @@ def test_converge_protocols(): actual = ( net["r%s" % i] .cmd( - 'vtysh -c "show ipv6 route" | sed -e \'/^Codes: /,/^\s*$/d\' | env LC_ALL=en_US.UTF-8 sort 2> /dev/null' + "vtysh -c \"show ipv6 route\" | sed -e '/^Codes: /,/^\s*$/d' | env LC_ALL=en_US.UTF-8 sort 2> /dev/null" ) .rstrip() ) |
