Skip to content

Commit 0f44008

Browse files
committed
fixup! remove unnecessary String call
1 parent 3460031 commit 0f44008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/node/update.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe("update", () => {
6868
const newRedirectNumber = parseInt(currentRedirectNumber) - 1
6969

7070
response.writeHead(302, "testing", {
71-
location: `/redirect/${String(newRedirectNumber)}`,
71+
location: `/redirect/${newRedirectNumber}`,
7272
})
7373
return response.end("")
7474
}

0 commit comments

Comments
 (0)