Skip to content

Commit

Permalink
Fix formatting of greater than or equal sign
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jun 5, 2024
1 parent 6362204 commit 0f311e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def make_unary_params(
)
if api_version < min_version:
marks = pytest.mark.skip(
reason=f"requires ARRAY_API_TESTS_VERSION=>{min_version}"
reason=f"requires ARRAY_API_TESTS_VERSION >= {min_version}"
)
else:
marks = ()
Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def pytest_collection_modifyitems(config, items):
if api_version < min_version:
item.add_marker(
mark.skip(
reason=f"requires ARRAY_API_TESTS_VERSION=>{min_version}"
reason=f"requires ARRAY_API_TESTS_VERSION >= {min_version}"
)
)
# reduce max generated Hypothesis example for unvectorized tests
Expand Down

0 comments on commit 0f311e2

Please sign in to comment.