Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking13 committed Dec 7, 2024
1 parent eb000e4 commit 2faefd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def _run(selenium):

micropip.uninstall("snowballstemmer")

packages = await micropip.list()
packages = micropip.list()
assert "snowballstemmer" not in packages

_run(selenium_standalone_micropip)
Expand All @@ -81,6 +81,6 @@ async def _run(selenium):
snowballstemmer.stemmer("english")

lockfile = micropip.freeze()
assert "snowballstemmer" in json.loads(lockfile)
assert "snowballstemmer" in json.loads(lockfile)["packages"]

_run(selenium_standalone_micropip)

0 comments on commit 2faefd6

Please sign in to comment.