Skip to content

Commit b1eae7e

Browse files
committed
fix test adding channels into body dict
1 parent d9a4cbf commit b1eae7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mamba_gator/tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def test_pkg_install_with_version_constraints(self):
600600
r = self.wait_for_task(
601601
self.conda_api.post,
602602
["environments", n, "packages"],
603-
body={"packages": [test_pkg + "==2.14.2"]}, channels=["conda-forge", "defaults"]
603+
body={"packages": [test_pkg + "==2.14.2"], channels=["conda-forge", "defaults"]},
604604
)
605605
self.assertEqual(r.status_code, 200)
606606
r = self.conda_api.get(["environments", n])

0 commit comments

Comments
 (0)