diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-04 19:17:00 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-04 19:18:27 +0100 |
commit | 235aa6098fef3b398505835acbf42d4723b22d49 (patch) | |
tree | 350a44ce3b3687cf68532f889f2c702a1eed2935 /smoketest | |
parent | 2f31381416adda8f86d3b66d5e83fcf2b551df3f (diff) | |
download | vyos-1x-235aa6098fef3b398505835acbf42d4723b22d49.tar.gz vyos-1x-235aa6098fef3b398505835acbf42d4723b22d49.zip |
smoketest: vrrp: delete VLAN interfaces in tearDown()
(cherry picked from commit 3fb6f5a966c57cb0936b35c13655f0b3f36483c4)
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_ha_vrrp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_ha_vrrp.py b/smoketest/scripts/cli/test_ha_vrrp.py index 2524bf2b1..c14eea015 100755 --- a/smoketest/scripts/cli/test_ha_vrrp.py +++ b/smoketest/scripts/cli/test_ha_vrrp.py @@ -44,7 +44,7 @@ class TestVRRP(VyOSUnitTestSHIM.TestCase): for group in groups: vlan_id = group.lstrip('VLAN') - self.cli_set(['interfaces', 'ethernet', vrrp_interface, 'vif', vlan_id]) + self.cli_delete(['interfaces', 'ethernet', vrrp_interface, 'vif', vlan_id]) self.cli_delete(base_path) self.cli_commit() |