Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Oct 25, 2022
1 parent fb80ad1 commit 69c8c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/loader/test_link_neighbor_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_link_neighbor_loader_edge_label():

for batch in loader:
assert batch.edge_label.dtype == torch.long
assert torch.all(batch.edge_label[:10] == 2)
assert torch.all(batch.edge_label[:10] == 1)
assert torch.all(batch.edge_label[10:] == 0)


Expand Down

0 comments on commit 69c8c6c

Please sign in to comment.