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 b8166f3 commit 1bbf8bdCopy full SHA for 1bbf8bd
test/test_rw.py
@@ -17,6 +17,6 @@ def test_rw(device):
17
18
for n in range(start.size(0)):
19
cur = start[n].item()
20
- for le in range(1, walk_length):
21
- assert out[n, le].item() in col[row == cur].tolist()
22
- cur = out[n, le].item()
+ for i in range(1, walk_length):
+ assert out[n, i].item() in col[row == cur].tolist()
+ cur = out[n, i].item()
0 commit comments