Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/https-acid3
/
.
/
tools
/
lint
/
tests
/
base.py
blob: ea7c331b8e6e6603f60c4c5cec587e69daf5535d [
file
] [
log
] [
blame
] [
edit
]
def
check_errors
(
errors
):
for
e
in
errors
:
error_type
,
description
,
path
,
line_number
=
e
assert
isinstance
(
error_type
,
str
)
assert
isinstance
(
description
,
str
)
assert
isinstance
(
path
,
str
)
assert
line_number
is
None
or
isinstance
(
line_number
,
int
)