Skip to content

Commit c835cbc

Browse files
committed
Fix string test mistake
1 parent aa6d620 commit c835cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

__tests__/strings.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('/strings', () => {
88
.get('/strings/hello/world')
99
.then(res => {
1010
expect(res.status).toEqual(200);
11-
expect(res.body).toEqual({ result: 'Hello world!' });
11+
expect(res.body).toEqual({ result: 'Hello, world!' });
1212
done();
1313
});
1414
});

0 commit comments

Comments
 (0)