diff options
author | Christian Breunig <christian@breunig.cc> | 2025-03-31 17:59:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 17:59:55 +0200 |
commit | bc86b5750033c14aab751e9d3d175f7d45903ef6 (patch) | |
tree | ba3cbca9f498b04afe4614c50888781df6308e24 /smoketest | |
parent | a6ff1933a99a9b43a70f030647287bad6b9a8bbd (diff) | |
parent | 383af2dd4ab368368c954028e528a0e8634bba3b (diff) | |
download | vyos-1x-bc86b5750033c14aab751e9d3d175f7d45903ef6.tar.gz vyos-1x-bc86b5750033c14aab751e9d3d175f7d45903ef6.zip |
Merge pull request #4420 from c-po/veth-mtu
virtual-ethernet: T7293: add support to define interface MTU
Diffstat (limited to 'smoketest')
-rw-r--r-- | smoketest/scripts/cli/base_interfaces_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index 80d200e97..a9b758802 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -613,7 +613,7 @@ class BasicInterfaceTest: def test_mtu_1200_no_ipv6_interface(self): # Testcase if MTU can be changed to 1200 on non IPv6 # enabled interfaces - if not self._test_mtu: + if not self._test_mtu or not self._test_ipv6: self.skipTest('not supported') old_mtu = self._mtu |