From 9ef44a54b14040b403855b5cf4652f9594faeb67 Mon Sep 17 00:00:00 2001 From: Erik Reid <erik.reid@geant.org> Date: Sat, 9 Feb 2019 11:31:06 +0100 Subject: [PATCH] don't require json on testing route --- inventory_provider/routes/testing.py | 1 - test/test_testing_routes.py | 12 +----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/inventory_provider/routes/testing.py b/inventory_provider/routes/testing.py index 039ea410..16f1d670 100644 --- a/inventory_provider/routes/testing.py +++ b/inventory_provider/routes/testing.py @@ -5,7 +5,6 @@ routes = Blueprint("inventory-data-testing-support-routes", __name__) @routes.route("/flushdb", methods=['GET', 'POST']) -@common.require_accepts_json def flushdb(): common.get_redis().flushdb() return Response('OK') diff --git a/test/test_testing_routes.py b/test/test_testing_routes.py index e5f0bc46..44ae19a0 100644 --- a/test/test_testing_routes.py +++ b/test/test_testing_routes.py @@ -1,14 +1,4 @@ -import json -import jsonschema - -DEFAULT_REQUEST_HEADERS = { - "Content-type": "application/json", - "Accept": ["application/json"] -} - def test_flushdb(client): - rv = client.post( - "/testing/flushdb", - headers=DEFAULT_REQUEST_HEADERS) + rv = client.post("/testing/flushdb") assert rv.status_code == 200 -- GitLab