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 4d066a8 commit bbaeee4Copy full SHA for bbaeee4
tests/test.py
@@ -125,6 +125,8 @@ def test_load_graph_from_nxadb_as_smart_graph():
125
],
126
)
127
128
+ # Small preprocessing to remove whitespaces from club names,
129
+ # as smart graphs do not allow whitespaces in smart fields
130
G_NX_copy = G_NX.copy()
131
for _, node in G_NX_copy.nodes(data=True):
132
node["club"] = node["club"].replace(" ", "")
0 commit comments