Fix typo in the Changelog for get_closest_marker

This commit is contained in:
dmitry.dygalo
2019-01-05 20:08:09 +01:00
parent e24fdb138d
commit 5d0bcb4419

View File

@@ -1022,7 +1022,7 @@ Features
- Revamp the internals of the ``pytest.mark`` implementation with correct per
node handling which fixes a number of long standing bugs caused by the old
design. This introduces new ``Node.iter_markers(name)`` and
``Node.get_closest_mark(name)`` APIs. Users are **strongly encouraged** to
``Node.get_closest_marker(name)`` APIs. Users are **strongly encouraged** to
read the `reasons for the revamp in the docs
<https://docs.pytest.org/en/latest/mark.html#marker-revamp-and-iteration>`_,
or jump over to details about `updating existing code to use the new APIs