Skip to content

Commit

Permalink
ci: fix checked key
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda committed Nov 26, 2024
1 parent bd190ff commit 8737686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/nextjs-pages/ci.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const testEndpoint = ({

let result: RedisEntry | null = null
for (let i=1; i<=RETRY_COUNT; i++) {
result = await redis.get<RedisEntry>(`ci-cf-ran-${secret}`)
result = await redis.get<RedisEntry>(`ci-nextjs-pages-ran-${secret}`)
if (result) {
break
}
Expand All @@ -125,7 +125,7 @@ const testEndpoint = ({
expect(result?.secret).toBe(secret)
expect(result?.result).toBe(expectedResult)
}, {
timeout: 15000
timeout: TEST_TIMEOUT_DURATION
})
}

Expand Down

0 comments on commit 8737686

Please sign in to comment.