Skip to content

Commit ff8264b

Browse files
committed
Add missing return
Not sure why it only just now started complaining though.
1 parent 9883a87 commit ff8264b

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
@@ -67,7 +67,7 @@ describe("update", () => {
6767

6868
// Anything else is a 404.
6969
response.writeHead(404)
70-
response.end("not found")
70+
return response.end("not found")
7171
})
7272

7373
let _settings: SettingsProvider<UpdateSettings> | undefined

0 commit comments

Comments
 (0)