diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-05 17:03:25 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-05 17:03:25 +0100 |
commit | 4ebe908b2d824a3cb7579de66efd20bdcbd401fc (patch) | |
tree | f21fba2208a6945c5e790153f0b6e191ff0b056a /smoketest/scripts/cli/test_interfaces_l2tpv3.py | |
parent | 989cad9fbce72eaa7ba06b51ce70f33913a96417 (diff) | |
parent | ce809eee91aa2b7f2980dbfd191cdb9ad2947674 (diff) | |
download | vyos-1x-4ebe908b2d824a3cb7579de66efd20bdcbd401fc.tar.gz vyos-1x-4ebe908b2d824a3cb7579de66efd20bdcbd401fc.zip |
Merge branch 'current' of github.com:vyos/vyos-1x into equuleus
* 'current' of github.com:vyos/vyos-1x:
smoketest: mirror: T3169: re-add mirror / SPAN test case
Revert "smoketest: bgp: enable description test"
vyos.validate: import cleanup
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_l2tpv3.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_l2tpv3.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_l2tpv3.py b/smoketest/scripts/cli/test_interfaces_l2tpv3.py index be9565d00..c756bfdd5 100755 --- a/smoketest/scripts/cli/test_interfaces_l2tpv3.py +++ b/smoketest/scripts/cli/test_interfaces_l2tpv3.py @@ -15,7 +15,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import json -import jmespath import unittest from base_interfaces_test import BasicInterfaceTest @@ -23,8 +22,6 @@ from vyos.util import cmd class GeneveInterfaceTest(BasicInterfaceTest.BaseTest): def setUp(self): - super().setUp() - self._base_path = ['interfaces', 'l2tpv3'] self._options = { 'l2tpeth10': ['local-ip 127.0.0.1', 'remote-ip 127.10.10.10', @@ -37,6 +34,7 @@ class GeneveInterfaceTest(BasicInterfaceTest.BaseTest): 'source-port 2020', 'destination-port 20202'], } self._interfaces = list(self._options) + super().setUp() def test_add_single_ip_address(self): super().test_add_single_ip_address() |