Minor fix in tests

This commit is contained in:
Roman Yurchak 2020-05-12 12:19:15 +02:00
parent b9a346e90f
commit 21cd9fd366
1 changed files with 1 additions and 1 deletions

View File

@ -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')")