Skip to content

Commit

Permalink
fix status code
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang committed Mar 21, 2022
1 parent 1070131 commit 556575d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/markdown-link-check.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ describe('markdown-link-check', function () {
{ link: '#foo', statusCode: 200, err: null, status: 'alive' },
{ link: '#bar', statusCode: 200, err: null, status: 'alive' },
{ link: '#potato', statusCode: 404, err: null, status: 'dead' },
{ link: '#tomato', statusCode: 404, err: null, status: 'alive' },
{ link: '#tomato', statusCode: 200, err: null, status: 'alive' },
]);
done();
});
Expand Down

0 comments on commit 556575d

Please sign in to comment.