Skip to content

Commit 22b7567

Browse files
committed
also test case sensitivity
1 parent 807259e commit 22b7567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/link-check.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,10 @@ describe('link-check', function () {
270270

271271
it('should handle valid mailto with multiple recipients', function (done) {
272272
linkCheck(
273-
'mailto:[email protected],[email protected]?subject=Test',
273+
'MAILTO:[email protected],[email protected]?subject=Test',
274274
function (err, result) {
275275
expect(err).to.be(null);
276-
expect(result.link).to.be('mailto:[email protected],[email protected]?subject=Test');
276+
expect(result.link).to.be('MAILTO:[email protected],[email protected]?subject=Test');
277277
expect(result.status).to.be('alive');
278278
done();
279279
}

0 commit comments

Comments
 (0)