Update netbox/netbox/tests/test_graphql.py

Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
This commit is contained in:
Jeremy Sanders 2025-02-11 17:59:31 -06:00 committed by GitHub
parent 999cae939e
commit 03be7d2966
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -105,7 +105,6 @@ class GraphQLAPITestCase(APITestCase):
id site {id} id site {id}
} }
}""" }"""
print(query)
response = self.client.post(url, data={'query': query}, format="json", **self.header) response = self.client.post(url, data={'query': query}, format="json", **self.header)
self.assertHttpStatus(response, status.HTTP_200_OK) self.assertHttpStatus(response, status.HTTP_200_OK)
data = json.loads(response.content) data = json.loads(response.content)