summaryrefslogtreecommitdiff
path: root/networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py')
-rw-r--r--networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py b/networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py
index 7f2733d8..4885458f 100644
--- a/networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py
+++ b/networkx/algorithms/isomorphism/tests/vf2pp/test_precheck.py
@@ -94,6 +94,6 @@ class TestPreCheck:
G2, dict(zip(G2, itertools.cycle(colors2[::-1]))), "label"
)
- assert not vf2pp_is_isomorphic(G1, G2, node_labels="label")
+ assert not vf2pp_is_isomorphic(G1, G2, node_label="label")
G2.nodes[3]["label"] = "blue"
- assert vf2pp_is_isomorphic(G1, G2, node_labels="label")
+ assert vf2pp_is_isomorphic(G1, G2, node_label="label")