From 160688f31a35fcf40edb354c4e3f53b559e35dbb Mon Sep 17 00:00:00 2001 From: chrisala Date: Wed, 4 Dec 2024 08:29:54 +1100 Subject: [PATCH] Trying to fix test that started failing #3368 --- .../resources/wiremock/mappings/ws_objects.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/integration-test/resources/wiremock/mappings/ws_objects.json diff --git a/src/integration-test/resources/wiremock/mappings/ws_objects.json b/src/integration-test/resources/wiremock/mappings/ws_objects.json new file mode 100644 index 000000000..38dbca835 --- /dev/null +++ b/src/integration-test/resources/wiremock/mappings/ws_objects.json @@ -0,0 +1,15 @@ +{ + "request": { + "urlPattern": "/ws/objects/.+", + + "method": "GET" + }, + "response" : { + "status": 200, + "headers": { + "content-Type": "application/json" + }, + "body": "[]" + + } +}