Skip to content

Commit d5c2a83

Browse files
authored
Fixed test_repoquery after yaml rebuild (#4035)
1 parent 28cf273 commit d5c2a83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

micromamba/tests/test_repoquery.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_depends_local(yaml_env: Path):
3030
assert any(x["version"] == "0.2.5" for x in pkgs)
3131

3232
if platform.system() == "Linux":
33-
assert any(x["name"] == "libgcc-ng" for x in pkgs)
33+
assert any(x["name"] == "libgcc" for x in pkgs)
3434

3535

3636
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)
@@ -53,7 +53,7 @@ def test_depends_remote(yaml_env: Path):
5353
assert any(x["version"] == "0.2.5" for x in pkgs)
5454

5555
if platform.system() == "Linux":
56-
assert any(x["name"] == "libgcc-ng" for x in pkgs)
56+
assert any(x["name"] == "libgcc" for x in pkgs)
5757

5858

5959
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)

0 commit comments

Comments
 (0)