From 03be7d2966eddc14c7240250a31857ebe228ecfd Mon Sep 17 00:00:00 2001 From: Jeremy Sanders <23668453+jeremypng@users.noreply.github.com> Date: Tue, 11 Feb 2025 17:59:31 -0600 Subject: [PATCH] Update netbox/netbox/tests/test_graphql.py Co-authored-by: Jeremy Stretch --- netbox/netbox/tests/test_graphql.py | 1 - 1 file changed, 1 deletion(-) diff --git a/netbox/netbox/tests/test_graphql.py b/netbox/netbox/tests/test_graphql.py index 60a8ec5ae..ca231526f 100644 --- a/netbox/netbox/tests/test_graphql.py +++ b/netbox/netbox/tests/test_graphql.py @@ -105,7 +105,6 @@ class GraphQLAPITestCase(APITestCase): id site {id} } }""" - print(query) response = self.client.post(url, data={'query': query}, format="json", **self.header) self.assertHttpStatus(response, status.HTTP_200_OK) data = json.loads(response.content)