Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thiyaguk09 committed Dec 13, 2024
1 parent 973b112 commit e8d65ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion system-test/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,9 @@ describe('storage', function () {
await f2.delete();
const [notSoftDeletedFiles] = await hnsBucket.getFiles();
assert.strictEqual(notSoftDeletedFiles.length, 0);
const [softDeletedFiles] = await hnsBucket.getFiles({softDeleted: true});
const [softDeletedFiles] = await hnsBucket.getFiles({
softDeleted: true,
});
assert.strictEqual(softDeletedFiles.length, 2);
assert.notStrictEqual(
softDeletedFiles![0].metadata.restoreToken,
Expand Down

0 comments on commit e8d65ae

Please sign in to comment.