diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2020-06-16 08:20:51 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2020-06-16 10:58:22 +0000 |
commit | 1a24e35f18a311873ee77ffb5f046abea033a341 (patch) | |
tree | 059da1082512802b25780e8610ed0e41e78d681c /tests/wpt/web-platform-tests/workers/semantics/encodings/003-1.py | |
parent | 19c1f72eb2fe5178311161b6c85a67956a5a69b3 (diff) | |
download | servo-1a24e35f18a311873ee77ffb5f046abea033a341.tar.gz servo-1a24e35f18a311873ee77ffb5f046abea033a341.zip |
Update web-platform-tests to revision 4af6af604800559d2c58cf3561621ae43e28aaa8
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" |