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_vxlan.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_vxlan.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_vxlan.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_vxlan.py b/smoketest/scripts/cli/test_interfaces_vxlan.py index f41c180ad..a9b0fc5a1 100755 --- a/smoketest/scripts/cli/test_interfaces_vxlan.py +++ b/smoketest/scripts/cli/test_interfaces_vxlan.py @@ -21,8 +21,6 @@ from base_interfaces_test import BasicInterfaceTest class VXLANInterfaceTest(BasicInterfaceTest.BaseTest): def setUp(self): - super().setUp() - self._test_mtu = True self._base_path = ['interfaces', 'vxlan'] self._options = { @@ -30,6 +28,7 @@ class VXLANInterfaceTest(BasicInterfaceTest.BaseTest): 'vxlan1': ['vni 20', 'group 239.1.1.1', 'source-interface eth0'], } self._interfaces = list(self._options) + super().setUp() if __name__ == '__main__': unittest.main(verbosity=2) |