Skip to content

Commit dfdf4ec

Browse files
committed
fix nits
1 parent 18926cb commit dfdf4ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

news/12204.feature.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Improve use of datastructures to speed up candidate selection by 40%
1+
Improve use of datastructures to make candidate selection 1.6x faster

tests/unit/test_target_python.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_format_given(self, kwargs: Dict[str, Any], expected: str) -> None:
8888
((3, 7, 3), "37"),
8989
# Check a minor version with two digits.
9090
((3, 10, 1), "310"),
91-
# Check that versions=None is passed to get_tags().
91+
# Check that versions=None is passed to get_sorted_tags().
9292
(None, None),
9393
],
9494
)
@@ -113,7 +113,7 @@ def test_get_sorted_tags(
113113

114114
def test_get_unsorted_tags__uses_cached_value(self) -> None:
115115
"""
116-
Test that get_tags() uses the cached value.
116+
Test that get_unsorted_tags() uses the cached value.
117117
"""
118118
target_python = TargetPython(py_version_info=None)
119119
target_python._valid_tags_set = {

0 commit comments

Comments
 (0)