tests: make potential failures in urllib_test.v more informative

Delyan Angelov 2022-05-20 08:49:51 +03:00 committed by Jef Roosens
parent 801a88ad16
commit 59d4e59ac6
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 2 additions and 1 deletions

View File

@ -114,8 +114,9 @@ fn test_parse() ? {
]
for url in urls {
_ := urllib.parse(url) or {
eprintln(err)
assert false
panic('FAILED parsing url')
return
}
}
}