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

[GraphBolt] Fixing warning in `test_to_pyg_data`. (#7210)

parent a272efed
...@@ -929,7 +929,7 @@ def test_to_pyg_data(): ...@@ -929,7 +929,7 @@ def test_to_pyg_data():
try: try:
pyg_data = test_minibatch.to_pyg_data() pyg_data = test_minibatch.to_pyg_data()
assert ( assert (
pyg_data.x is None, pyg_data.x is None
), "Multiple features case should raise an error." ), "Multiple features case should raise an error."
except AssertionError as e: except AssertionError as e:
assert ( assert (
......
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