summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2021-06-30 13:34:22 -0400
committerGitHub <noreply@github.com>2021-06-30 20:34:22 +0300
commit591bd3b16798b9ed37b13c527f61c6f4f4dd99db (patch)
tree66f245ef1957c48fb0188034be0c2fa0824ea7a8
parent7fe275fdf2101acd91e99fb490e8ff2015a2d55d (diff)
downloadnetworkx-591bd3b16798b9ed37b13c527f61c6f4f4dd99db.tar.gz
fix spelling in docstring of conftest.py (#4945)
-rw-r--r--networkx/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/conftest.py b/networkx/conftest.py
index 68dd1dda..4f80d6bb 100644
--- a/networkx/conftest.py
+++ b/networkx/conftest.py
@@ -7,7 +7,7 @@ General guidelines for writing good tests:
- doctests always assume ``import networkx as nx`` so don't add that
- prefer pytest fixtures over classes with setup methods.
- use the ``@pytest.mark.parametrize`` decorator
-- use ``pytest.importskip`` for numpy, scipy, pandas, and matplotlib b/c of PyPy.
+- use ``pytest.importorskip`` for numpy, scipy, pandas, and matplotlib b/c of PyPy.
and add the module to the relevant entries below.
"""