Skip to content

Commit 2113559

Browse files
committed
fix: tests failed for new default expiration
1 parent e1853b4 commit 2113559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/basic.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ test("expire", async () => {
135135
await testExpireParse("1d", 86400)
136136
await testExpireParse("100d", 2592000) // longer expiration will be clipped to 30d
137137
await testExpireParse("100 m", 6000)
138-
await testExpireParse("", 1209600)
138+
await testExpireParse("", 604800)
139139

140140
const testFailParse = async (expire: string) => {
141141
const uploadResponse = await workerFetch(ctx, new Request(BASE_URL, {

0 commit comments

Comments
 (0)