From a11305e3782772588e141f2e1146cf917bf82cf0 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Fri, 30 Aug 2024 11:31:47 -0500 Subject: [PATCH] Fix test --- netbox/dcim/tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/tests/test_api.py b/netbox/dcim/tests/test_api.py index b086b9f5b..90b097e0a 100644 --- a/netbox/dcim/tests/test_api.py +++ b/netbox/dcim/tests/test_api.py @@ -994,7 +994,7 @@ class InventoryItemTemplateTest(APIViewTestCases.APIViewTestCase): bulk_update_data = { 'description': 'New description', } - user_permissions = ('dcim.view_devicetype', ) + user_permissions = ('dcim.view_devicetype', 'dcim.view_manufacturer',) @classmethod def setUpTestData(cls):