Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nbonamy committed Dec 23, 2024
1 parent 69d3cab commit d5e4d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/history.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ vi.mock('fs', async (importOriginal) => {
statSync: vi.fn((file) => {
return {
mtime: file.includes('image3')
? new Date(new Date().getTime() - kUnusedDelay / 1.1)
? new Date(new Date().getTime() - kUnusedDelay * 0.9)
: new Date(new Date().getTime() - kUnusedDelay * 1.1)
}
})
Expand Down

0 comments on commit d5e4d1a

Please sign in to comment.