Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf authored Sep 24, 2023
1 parent 62fb8eb commit 435778a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ def test_compiler_metadata_cross_compiler():
@pytest.mark.parametrize(
"platform,arch,stdlibs",
[
("linux", "64", {"sysroot_linux-64 2.12"}),
("linux", "aarch64", {"sysroot_linux-64 2.17"}),
("osx", "64", {"macosx_deployment_target_osx-64 10.13"}),
("osx", "arm64", {"macosx_deployment_target_osx-arm64 11.0"}),
("linux", "64", {"sysroot_linux-64 2.12.*"}),
("linux", "aarch64", {"sysroot_linux-aarch64 2.17.*"}),
("osx", "64", {"macosx_deployment_target_osx-64 10.13.*"}),
("osx", "arm64", {"macosx_deployment_target_osx-arm64 11.0.*"}),
],
)
def test_native_stdlib_metadata(
Expand Down

0 comments on commit 435778a

Please sign in to comment.