diff --git a/netbox/ipam/tests/test_api.py b/netbox/ipam/tests/test_api.py index b6bc0e5e8..c6490856b 100644 --- a/netbox/ipam/tests/test_api.py +++ b/netbox/ipam/tests/test_api.py @@ -883,7 +883,7 @@ class VLANGroupTest(APIViewTestCases.APIViewTestCase): vlangroup = VLANGroup.objects.create( name='VLAN Group X', slug='vlan-group-x', - vlan_range_ids=string_to_range_array(f"{MIN_VID}-{MAX_VID}") + vlan_id_ranges=string_to_range_array(f"{MIN_VID}-{MAX_VID}") ) # Create a set of VLANs within the group diff --git a/netbox/ipam/tests/test_views.py b/netbox/ipam/tests/test_views.py index bd5a19c2f..d9c2ed815 100644 --- a/netbox/ipam/tests/test_views.py +++ b/netbox/ipam/tests/test_views.py @@ -765,7 +765,7 @@ class VLANGroupTestCase(ViewTestCases.OrganizationalObjectViewTestCase): cls.form_data = { 'name': 'VLAN Group X', 'slug': 'vlan-group-x', - 'vlan_range_ids': string_to_range_array('100-4094'), + 'vlan_id_ranges': string_to_range_array('100-4094'), 'description': 'A new VLAN group', 'tags': [t.pk for t in tags], }