diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-14 13:26:37 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-01-14 13:26:37 +0100 |
commit | 1ccbaa9742a587e65aea7cde0344494a6137343a (patch) | |
tree | 5ddf890c786a84ec9f041f479793a3b296460548 /smoketest/scripts/cli/test_protocols_ospf.py | |
parent | 7b87667a7f5a8651827d193abe623577b37ed959 (diff) | |
download | vyos-1x-1ccbaa9742a587e65aea7cde0344494a6137343a.tar.gz vyos-1x-1ccbaa9742a587e65aea7cde0344494a6137343a.zip |
ospf: T4934: bugfix AssertionError in smoketest for area 10 network
This fixes commit 20f448d16c ("T4934: ospf: Fix inter-area route summarization")
where an assert was present for a CLI option that was missing to be set
causing tests to fail.
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_ospf.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py index ec434e7d0..581959b15 100755 --- a/smoketest/scripts/cli/test_protocols_ospf.py +++ b/smoketest/scripts/cli/test_protocols_ospf.py @@ -95,7 +95,7 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase): self.assertIn(f' default-metric {metric}', frrconfig) self.assertIn(f' passive-interface default', frrconfig) self.assertIn(f' area 10 stub', frrconfig) - self.assertIn(f' area 10 network 10.0.0.0/16', frrconfig) + self.assertIn(f' network 10.0.0.0/16 area 10', frrconfig) self.assertIn(f' area 10 range 10.0.1.0/24', frrconfig) self.assertNotIn(f' area 10 range 10.0.1.0/24 not-advertise', frrconfig) self.assertIn(f' area 10 range 10.0.2.0/24 not-advertise', frrconfig) |