From cb556429f52bde85e65e72e1bec5949715f19428 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Fri, 21 Jun 2024 15:20:28 -0700 Subject: [PATCH] 9627 fix tests --- netbox/ipam/tests/test_api.py | 2 +- netbox/ipam/tests/test_views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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], }