diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-23 19:31:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 19:31:12 +0100 |
commit | 162f2f00ab1fb3f01e1120945960d2677543dc3e (patch) | |
tree | feb55e6bd1e6c13ae7cac9ea2b158763cd6289cf /smoketest/scripts/cli/test_protocols_bgp.py | |
parent | 09b1b533d14e029427234ca153c0b700dbf04a09 (diff) | |
parent | 75dc3f62a0e9fcb8d1bd9b732e4cd126ff751abb (diff) | |
download | vyos-1x-162f2f00ab1fb3f01e1120945960d2677543dc3e.tar.gz vyos-1x-162f2f00ab1fb3f01e1120945960d2677543dc3e.zip |
Merge pull request #739 from sever-sever/T3211
routing: T3211: Add redistribute protocol IS-IS to bgp ospf rip
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_bgp.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bgp.py b/smoketest/scripts/cli/test_protocols_bgp.py index 1de51a1fc..b6a6a493c 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -388,7 +388,7 @@ class TestProtocolsBGP(unittest.TestCase): } # We want to redistribute ... - redistributes = ['connected', 'kernel', 'ospf', 'rip', 'static'] + redistributes = ['connected', 'isis', 'kernel', 'ospf', 'rip', 'static'] for redistribute in redistributes: self.session.set(base_path + ['address-family', 'ipv4-unicast', 'redistribute', redistribute]) |