diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-04-07 16:39:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-07 16:39:46 +0200 |
commit | ca15e16f3f1b5174dc7ee2efa531aa974d3e97db (patch) | |
tree | c6d00cc20a69197428207ceba22eaff1ce3346ad /smoketest/scripts/cli | |
parent | 157e5c44f14f6b9c0da0e5fe7636ff3d28785886 (diff) | |
parent | 8296cc727066e739c178918a91cfc11d20d26fe1 (diff) | |
download | vyos-1x-ca15e16f3f1b5174dc7ee2efa531aa974d3e97db.tar.gz vyos-1x-ca15e16f3f1b5174dc7ee2efa531aa974d3e97db.zip |
Merge pull request #3265 from c-po/ethernet-mtu-T5862
ethernet: T5862: default MTU is not acceptable in some environments
Diffstat (limited to 'smoketest/scripts/cli')
-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() |