1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #6822: Use consistent maximum value for interface MTU

This commit is contained in:
jeremystretch
2021-07-27 16:04:51 -04:00
parent 4f6944424b
commit 8355270a1a
7 changed files with 18 additions and 20 deletions

View File

@@ -1464,7 +1464,7 @@ class InterfaceTestCase(ViewTestCases.DeviceComponentViewTestCase):
'enabled': False,
'lag': interfaces[3].pk,
'mac_address': EUI('01:02:03:04:05:06'),
'mtu': 2000,
'mtu': 65000,
'mgmt_only': True,
'description': 'A front port',
'mode': InterfaceModeChoices.MODE_TAGGED,