8000 Remove extra keyword from pytest.skip call. · matplotlib/matplotlib@980bdbe · GitHub
[go: up one dir, main page]

Skip to content

Commit 980bdbe

Browse files
committed
Remove extra keyword from pytest.skip call.
There is no reason keyword argument to the top-level pytest.skip function.
1 parent 79ccf53 commit 980bdbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_backend_qt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def qt_module(request):
5656
py_qt_ver = QtCore.__version_info__[0]
5757

5858
if py_qt_ver != 4:
59-
pytest.skip(reason='Qt4 is not available')
59+
pytest.skip('Qt4 is not available')
6060

6161
from matplotlib.backends.backend_qt4 import (
6262
MODIFIER_KEYS, SUPER, ALT, CTRL, SHIFT)

0 commit comments

Comments
 (0)
0