Browse Source

dcim: removed unneeded primary_ip list

Zach Moody 9 years ago
parent
commit
01d0ba7ee1
1 changed files with 0 additions and 8 deletions
  1. 0 8
      netbox/dcim/tests/test_apis.py

+ 0 - 8
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)