Skip to content

Commit 53c0cca

Browse files
committed
FIX types
1 parent 6edacd3 commit 53c0cca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/helper/test-servers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ export function startTestServers() {
4141
res.send('Hello World!');
4242
});
4343
app.get('/teapot', (_req, res) => {
44-
res.status(418).send("I'm a teapot");
44+
res.status(418).send('I\'m a teapot');
4545
});
4646
app.get('/fail', (req, res) => {
47-
res.status(500).send("Something went wrong");
47+
res.status(500).send('Something went wrong');
4848
});
4949
app.use('/files', express.static(staticFilesPath));
5050
app.get('/base64/:filename', async (req: any, res: any) => {

0 commit comments

Comments
 (0)