Skip to content

Commit b16091b

Browse files
committed
fixup! Remove Ceph RadosGW from supported location types and capabilities
removal of additional unused checks
1 parent ab22e9e commit b16091b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

tests/functional/aws-node-sdk/test/object/rangeTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function createHashedFile(bytes) {
101101
return execFileAsync('./getRangeExec', ['--size', bytes, name]);
102102
}
103103

104-
describe.skip('aws-node-sdk range tests', () => {
104+
describe('aws-node-sdk range tests', () => {
105105
before(() => execFileAsync('gcc', ['-o', 'getRangeExec',
106106
'lib/utility/getRange.c']));
107107
after(() => execAsync('rm getRangeExec'));

tests/multipleBackend/routes/routeBackbeat.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ const { makeid } = require('../../unit/helpers');
2424
const { makeRequest, makeBackbeatRequest } = require('../../functional/raw-node/utils/makeRequest');
2525
const BucketUtility = require('../../functional/aws-node-sdk/lib/utility/bucket-util');
2626
const {
27-
hasLocation
27+
hasLocation,
28+
describeSkipIfNotMultiple,
2829
} = require('../../functional/aws-node-sdk/lib/utility/test-utils');
2930
const {
3031
awsLocation,
@@ -194,7 +195,7 @@ const itIfLocationAws = hasLocation(awsLocation) ? it : it.skip;
194195
const itIfLocationAzure = hasLocation(azureLocation) ? it : it.skip;
195196
const itSkipS3C = process.env.S3_END_TO_END ? it.skip : it;
196197

197-
describe.skip('backbeat DELETE routes', () => {
198+
describeSkipIfNotMultiple('backbeat DELETE routes', () => {
198199
it('abort MPU', done => {
199200
const awsKey = 'backbeat-mpu-test';
200201
async.waterfall([

0 commit comments

Comments
 (0)