diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-04-07 19:37:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-07 19:37:22 +0200 |
commit | 96f7fb69fb6ba34f15e35b4cddbb108eebda6199 (patch) | |
tree | 1046cc126729244a7c74472454318c164516a89b /smoketest/scripts/cli/base_interfaces_test.py | |
parent | b286552f1d0f1bfa23eea29ab92426db27efc425 (diff) | |
parent | fbaa707f72ac1a0214ca57c8768fefa4b818738b (diff) | |
download | vyos-1x-96f7fb69fb6ba34f15e35b4cddbb108eebda6199.tar.gz vyos-1x-96f7fb69fb6ba34f15e35b4cddbb108eebda6199.zip |
Merge pull request #3276 from vyos/mergify/bp/sagitta/pr-3265
ethernet: T5862: default MTU is not acceptable in some environments (backport #3265)
Diffstat (limited to 'smoketest/scripts/cli/base_interfaces_test.py')
-rw-r--r-- | smoketest/scripts/cli/base_interfaces_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index a106ebe61..9be2c2f1a 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -519,8 +519,7 @@ class BasicInterfaceTest: base = self._base_path + [interface, 'vif', vlan] self.cli_set(base + ['mtu', mtu_9000]) - # check validate() - VIF MTU must not be larger the parent interface - # MTU size. + # check validate() - Interface MTU "9000" too high, parent interface MTU is "1500"! with self.assertRaises(ConfigSessionError): self.cli_commit() |