We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bbf19 commit 8c81b31Copy full SHA for 8c81b31
tests/test_graph_attributes.py
@@ -34,4 +34,6 @@ def test_copying_graph_copies_attributes():
34
assert g2.attrs["age"] == 42
35
assert g2.attrs["name"] == "Zachary karate club graph"
36
37
- g2.attrs
+ del g2.attrs["age"]
38
+ assert "age" not in g2.attrs
39
+ assert g.attrs["age"] == 42
0 commit comments