Skip to content

Commit

Permalink
Fix the test.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentMazare committed Nov 6, 2024
1 parent 603250d commit 3118696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yomikomi-pyo3/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def comparison_test(args):
for v in yk.stream([1, 2, np.array([1, 2, 3, 4, 5])], field="foo"):
print(v)
for v in (
yk.stream(range(42), field="foo")
yk.stream([[i] for i in range(42)], field="foo")
.sliding_window(7, field="foo", overlap_over_samples=True)
.batch(2)
.enumerate("idx")
Expand Down

0 comments on commit 3118696

Please sign in to comment.