fix mistype

This commit is contained in:
Ivan Blinkov 2019-01-28 11:23:04 +03:00
parent 1b5308092b
commit 53beff31e3

View File

@ -34,7 +34,7 @@ def test_single_page(input_path, lang):
logging.error('Found %d duplicate anchor points' % duplicate_anchor_points) logging.error('Found %d duplicate anchor points' % duplicate_anchor_points)
if links_to_nowhere: if links_to_nowhere:
logging.error('Found %d links to nowhere' % links_to_nowhere) logging.error('Found %d links to nowhere' % links_to_nowhere)
system.exit(10) sys.exit(10)
assert len(anchor_points) > 10, 'Html parsing is probably broken' assert len(anchor_points) > 10, 'Html parsing is probably broken'