diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py')
-rw-r--r-- | tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py b/tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py index 1e899aac271..4f5df2bb10d 100644 --- a/tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py +++ b/tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- def main(request, response): - return "PASS" if request.GET.first('x') == 'å' else "FAIL" + return u"PASS" if request.GET.first(b'x').decode('utf-8') == u'å' else u"FAIL" |