Skip to content

Commit

Permalink
test: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunps committed Sep 29, 2023
1 parent 6bebcb8 commit a7072b9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions py-rattler/tests/unit/test_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,9 @@ async def test_solve(
callback=None,
)

available_packages = [
package.into_repo_data(noarch_chan) for package in noarch_data
] + [package.into_repo_data(linux64_chan) for package in linux64_data]

available_packages = [(data, noarch_chan) for data in noarch_data] + [
(data, linux64_chan) for data in linux64_data
]
solved_data = solve(
[MatchSpec("test-package"), MatchSpec("foobar"), MatchSpec("baz")],
available_packages,
Expand Down

0 comments on commit a7072b9

Please sign in to comment.