Skip to content

Commit b58dd88

Browse files
committed
fix tests
1 parent 10d09bd commit b58dd88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/models/test_arch_sccnn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ def test_functionality(remote_sample: Callable) -> None:
8484
}
8585
}
8686
output = model.postproc(output[0], block_info=block_info)
87-
ys, xs, _, _ = np.nonzero(output)
87+
ys, xs, _ = np.nonzero(output)
8888
np.testing.assert_array_equal(xs, np.array([]))
8989
np.testing.assert_array_equal(ys, np.array([]))

0 commit comments

Comments
 (0)