From 9b77587bf0a0bb504d85d7b3b37f09fe9bc8c31a Mon Sep 17 00:00:00 2001 From: Nicolas Humbert Date: Thu, 18 Jul 2024 14:56:10 +0200 Subject: [PATCH] CLDSRV-554 Skip testing the deletion of an non-existing sproxyd key --- tests/functional/raw-node/test/routes/routeBackbeat.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/functional/raw-node/test/routes/routeBackbeat.js b/tests/functional/raw-node/test/routes/routeBackbeat.js index 7d7833d680..98d0af3925 100644 --- a/tests/functional/raw-node/test/routes/routeBackbeat.js +++ b/tests/functional/raw-node/test/routes/routeBackbeat.js @@ -2121,7 +2121,9 @@ describeSkipIfAWS('backbeat routes', () => { done(); }); }); - it('should skip batch delete of a non-existent location', done => { + + // TODO: unskip test when S3C-9123 is fixed + it.skip('should skip batch delete of a non-existent location', done => { async.series([ done => { const options = { @@ -2132,7 +2134,7 @@ describeSkipIfAWS('backbeat routes', () => { path: '/_/backbeat/batchdelete', requestBody: '{"Locations":' + - '[{"key":"abcdef","dataStoreName":"us-east-1"}]}', + '[{"key":"abcdefghijklmnopqrstuvwxyabcddefghijklmn","dataStoreName":"us-east-1"}]}', jsonResponse: true, }; makeRequest(options, done);