From 3041d0ead9277b92077ab04875c91b70cbfae581 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 23 Feb 2024 13:49:03 -0500 Subject: [PATCH] Correct ModuleBayTest brief_fields (see #15243) --- 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 f17f4a03f..ef085e7ec 100644 --- a/netbox/dcim/tests/test_api.py +++ b/netbox/dcim/tests/test_api.py @@ -1755,7 +1755,7 @@ class RearPortTest(APIViewTestCases.APIViewTestCase): class ModuleBayTest(APIViewTestCases.APIViewTestCase): model = ModuleBay - brief_fields = ['display', 'id', 'module', 'name', 'url'] + brief_fields = ['display', 'id', 'installed_module', 'name', 'url'] bulk_update_data = { 'description': 'New description', }