Unverified Commit 89f8d5f6 authored by Andrei Ivanov's avatar Andrei Ivanov Committed by GitHub
Browse files

Improving propagate and filter tests. (#6146)


Co-authored-by: default avatarHongzhi (Steve), Chen <chenhongzhi.nkcs@gmail.com>
parent 8b839a23
...@@ -9,7 +9,7 @@ from utils import parametrize_idtype ...@@ -9,7 +9,7 @@ from utils import parametrize_idtype
def test_graph_filter(): def test_graph_filter():
g = dgl.DGLGraph().to(F.ctx()) g = dgl.graph([]).to(F.ctx())
g.add_nodes(4) g.add_nodes(4)
g.add_edges([0, 1, 2, 3], [1, 2, 3, 0]) g.add_edges([0, 1, 2, 3], [1, 2, 3, 0])
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment