[html] fix failing test

This commit is contained in:
Martin Aeschlimann 2016-09-14 23:14:09 +02:00
parent e49ce72c6d
commit acc4e94ee6

View file

@ -78,8 +78,8 @@ suite('HTML Link Detection', () => {
});
test('Link detection', () => {
testLinkDetection('<img src="foo.png">', [9]);
testLinkDetection('<a href="http://server/foo.html">', [8]);
testLinkDetection('<img src="foo.png">', [10]);
testLinkDetection('<a href="http://server/foo.html">', [9]);
});
});