Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/whatsnew/latest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ This document explains the changes made to Iris for this release
Note: this object is temporary and is likely to be replaced by a permanent solution or else be renamed.
(:issue:`7094`, :pull:`7134`)

#. `@rcomer`_ fixed the capitalisation of a pytest marker. (:pull:`7163`)

.. comment
Whatsnew author names (@github name) in alphabetical order. Note that,
core dev names are automatically included by the common_links.inc:
Expand Down
2 changes: 1 addition & 1 deletion lib/iris/tests/graphics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def skip_plot(fn: Callable) -> Callable:
... pass
"""
skip = pytest.mark.skipIf(
skip = pytest.mark.skipif(
condition=not MPL_AVAILABLE,
reason="Graphics tests require the matplotlib library.",
)
Expand Down
Loading