summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-05 17:03:25 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-05 17:03:25 +0100
commit4ebe908b2d824a3cb7579de66efd20bdcbd401fc (patch)
treef21fba2208a6945c5e790153f0b6e191ff0b056a /smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py
parent989cad9fbce72eaa7ba06b51ce70f33913a96417 (diff)
parentce809eee91aa2b7f2980dbfd191cdb9ad2947674 (diff)
downloadvyos-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_pseudo_ethernet.py')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_pseudo_ethernet.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py b/smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py
index c1711c5a3..85e5e70bd 100755
--- a/smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py
+++ b/smoketest/scripts/cli/test_interfaces_pseudo_ethernet.py
@@ -19,22 +19,19 @@ import unittest
from base_interfaces_test import BasicInterfaceTest
class PEthInterfaceTest(BasicInterfaceTest.BaseTest):
-
def setUp(self):
- super().setUp()
- self._base_path = ['interfaces', 'pseudo-ethernet']
-
self._test_ip = True
self._test_ipv6 = True
self._test_mtu = True
self._test_vlan = True
self._test_qinq = True
-
+ self._base_path = ['interfaces', 'pseudo-ethernet']
self._options = {
'peth0': ['source-interface eth1'],
'peth1': ['source-interface eth1'],
}
self._interfaces = list(self._options)
+ super().setUp()
if __name__ == '__main__':
unittest.main(verbosity=2)