Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
williamlardier committed Jul 13, 2023
1 parent 6283834 commit 71de880
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/functional/aws-node-sdk/test/object/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ describe('GET object', () => {
});

const isCEPH = process.env.CI_CEPH !== undefined;
const describeSkipIfCeph = isCEPH ? describe.skip : describe;
const describeSkipIfCeph = isCEPH ? describe.skip : describe.only;

describeSkipIfCeph('GET object with object lock', () => {
withV4(sigCfg => {
Expand Down Expand Up @@ -1114,7 +1114,7 @@ describeSkipIfCeph('GET object with object lock', () => {
throw err;
}));

it.only('should return object lock headers if set on the object', done => {
it('should return object lock headers if set on the object', done => {
s3.getObject({ Bucket: bucket, Key: key }, (err, res) => {
assert.ifError(err);
assert.strictEqual(res.ObjectLockMode, mockMode);
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/aws-node-sdk/test/object/objectHead.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ describe('HEAD object, conditions', () => {
});

const isCEPH = process.env.CI_CEPH !== undefined;
const describeSkipIfCeph = isCEPH ? describe.skip : describe;
const describeSkipIfCeph = isCEPH ? describe.skip : describe.only;

describeSkipIfCeph('HEAD object with object lock', () => {
withV4(sigCfg => {
Expand Down

0 comments on commit 71de880

Please sign in to comment.