mirror of https://github.com/pyodide/pyodide.git
Minor fix in tests
This commit is contained in:
parent
b9a346e90f
commit
21cd9fd366
|
@ -30,7 +30,6 @@ def test_install_simple(selenium_standalone):
|
|||
"stemmer.stemWords('go going goes gone'.split())") == [
|
||||
'go', 'go', 'goe', 'gone'
|
||||
]
|
||||
print(selenium_standalone.logs)
|
||||
|
||||
|
||||
def test_parse_wheel_url():
|
||||
|
@ -68,3 +67,4 @@ def test_install_custom_url(selenium_standalone, web_server_secondary):
|
|||
base_url = f'http://{server_hostname}:{server_port}/test/data/'
|
||||
url = base_url + 'snowballstemmer-2.0.0-py2.py3-none-any.whl'
|
||||
selenium_standalone.run(f"micropip.install('{url}')")
|
||||
selenium_standalone.run(f"import snowballstemmer')")
|
||||
|
|
Loading…
Reference in New Issue