Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: flakey5 <[email protected]>
  • Loading branch information
flakey5 committed Jan 27, 2025
1 parent 406733e commit 557135d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/file.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ describe('File Tests', () => {
assert.strictEqual(res.status, 200);
assert.strictEqual(res.headers.has('last-modified'), true);

const date = new Date(res.headers.get('last-modified')!)
date.setSeconds(date.getSeconds() + 1)
const date = new Date(res.headers.get('last-modified')!);
date.setSeconds(date.getSeconds() + 1);

// Make sure it returns a 304 when If-Modified-Since
// >= file last modified
Expand Down

0 comments on commit 557135d

Please sign in to comment.