Commit 2bc63bca authored by Michael Droettboom's avatar Michael Droettboom

Fix python2js test

parent c5fb1e49
......@@ -31,7 +31,7 @@ def test_python2js(selenium):
'return pyodide.runPython("\'碘化物\'") === "碘化物"')
assert selenium.run_js(
'let x = pyodide.runPython("b\'bytes\'");\n'
'return (x instanceof window.Uint8Array) && '
'return (x instanceof window.Uint8ClampedArray) && '
'(x.length === 5) && '
'(x[0] === 98)')
assert selenium.run_js(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment