Skip to content

Commit 7ad92b6

Browse files
thiyaguk09quirogas
authored andcommitted
fix
1 parent 4ef2298 commit 7ad92b6

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

handwritten/storage/test/bucket.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3376,8 +3376,12 @@ describe('Bucket', () => {
33763376
restrictionMode: 'FullyRestricted',
33773377
},
33783378
};
3379-
assert.deepStrictEqual(reqOpts.json.encryption, expectedEncryption);
3380-
done();
3379+
try {
3380+
assert.deepStrictEqual(reqOpts.json.encryption, expectedEncryption);
3381+
done();
3382+
} catch (error) {
3383+
done(error);
3384+
}
33813385
};
33823386

33833387
bucket.setMetadata(patch, assert.ifError);

0 commit comments

Comments
 (0)