Skip to content

Commit

Permalink
style: linted code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Nov 16, 2023
1 parent eefc98c commit db00789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions test/storage/quota.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ const MAXIMUM_20_0 = '0'.repeat(MAXIMUM_LIMIT * 0.2);
const MAXIMUM_90_0 = '0'.repeat(MAXIMUM_LIMIT * 0.9);

export function testStorageQuota(name: string, storage: Storage): void {



it(`${name} has storage limit`, () => {
assert.ok(storage);

Expand Down Expand Up @@ -76,7 +73,7 @@ export function testStorageQuota(name: string, storage: Storage): void {
ttl: 60_000,
data: {
...EMPTY_RESPONSE,
data: MAXIMUM_90_0// 90%
data: MAXIMUM_90_0 // 90%
}
});

Expand Down
5 changes: 1 addition & 4 deletions test/util/key-generator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ describe('KeyGeneration', () => {
];

for (const [first, second] of groups) {
assert.equal(
defaultKeyGenerator({ url: first }),
defaultKeyGenerator({ url: second })
);
assert.equal(defaultKeyGenerator({ url: first }), defaultKeyGenerator({ url: second }));

assert.equal(
defaultKeyGenerator({ baseURL: first }),
Expand Down

0 comments on commit db00789

Please sign in to comment.