Skip to content

Commit

Permalink
CLDSRV-554 Skip testing the deletion of an non-existing sproxyd key
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas2bert committed Jul 18, 2024
1 parent 88a7bee commit 9b77587
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/functional/raw-node/test/routes/routeBackbeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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);
Expand Down

0 comments on commit 9b77587

Please sign in to comment.