Skip to content

Commit edb7e91

Browse files
Breaking the test with 400
1 parent 8f15da5 commit edb7e91

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

haiku-src/haiku-tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('GET /nonexistent', () => {
3838
request(app)
3939
.get('/nonexistent')
4040
.expect('Content-Type', /html/)
41-
.expect(404)
41+
.expect(400)
4242
.end((err, res) => {
4343
if (err) return done(err);
4444
expect(res.status).to.equal(404);
@@ -47,4 +47,4 @@ describe('GET /nonexistent', () => {
4747
done();
4848
});
4949
});
50-
});
50+
});

0 commit comments

Comments
 (0)