From 01d0ba7ee1aaae2d9fa946a74dbb2ee79af34c45 Mon Sep 17 00:00:00 2001 From: Zach Moody Date: Tue, 8 Mar 2016 12:46:05 -0600 Subject: [PATCH] dcim: removed unneeded primary_ip list --- netbox/dcim/tests/test_apis.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/netbox/dcim/tests/test_apis.py b/netbox/dcim/tests/test_apis.py index a99f8bf88..45d6dd2f0 100644 --- a/netbox/dcim/tests/test_apis.py +++ b/netbox/dcim/tests/test_apis.py @@ -322,14 +322,6 @@ class DeviceTest(APITestCase): nested_fields = ['id', 'name'] - # Holds primary IP nested fields until api tests - # can be made and fields imported. - primary_ip = [ - 'id', - 'family', - 'address' - ] - def test_get_list(self, endpoint='/api/dcim/devices/'): response = self.client.get(endpoint) content = json.loads(response.content)