Fixed test_repoquery after yaml rebuild (#4035)

This commit is contained in:
Johan Mabille 2025-07-31 15:55:35 +02:00 committed by GitHub
parent 28cf27362b
commit d5c2a83932
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ def test_depends_local(yaml_env: Path):
assert any(x["version"] == "0.2.5" for x in pkgs) assert any(x["version"] == "0.2.5" for x in pkgs)
if platform.system() == "Linux": if platform.system() == "Linux":
assert any(x["name"] == "libgcc-ng" for x in pkgs) assert any(x["name"] == "libgcc" for x in pkgs)
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True) @pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)
@ -53,7 +53,7 @@ def test_depends_remote(yaml_env: Path):
assert any(x["version"] == "0.2.5" for x in pkgs) assert any(x["version"] == "0.2.5" for x in pkgs)
if platform.system() == "Linux": if platform.system() == "Linux":
assert any(x["name"] == "libgcc-ng" for x in pkgs) assert any(x["name"] == "libgcc" for x in pkgs)
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True) @pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)