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:17:00 +0100 |
commit | 3fb6f5a966c57cb0936b35c13655f0b3f36483c4 (patch) | |
tree | 2331b8b1169df7721e4db19c4a55d5aa7a837c1f /smoketest | |
parent | e29e5c685809d8c18b5d3560c6cbcb4edce6eb82 (diff) | |
download | vyos-1x-3fb6f5a966c57cb0936b35c13655f0b3f36483c4.tar.gz vyos-1x-3fb6f5a966c57cb0936b35c13655f0b3f36483c4.zip |
smoketest: vrrp: delete VLAN interfaces in tearDown()
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 751fd105e..8582b1519 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() |