This commit is contained in:
xing 2023-01-16 18:03:51 +08:00
parent 3db3276082
commit 8813cdbfce

View File

@ -326,7 +326,7 @@ func TestSimpleSliceStream_Reverse(t *testing.T) {
tests := []testCase[int]{ tests := []testCase[int]{
{ {
name: "t1", name: "t1",
r: s, r: NewSimpleSliceStream(helper.RangeSlice(1, 10, 1)),
want: SimpleSliceStream[int]{helper.RangeSlice(10, 1, -1)}, want: SimpleSliceStream[int]{helper.RangeSlice(10, 1, -1)},
}, },
} }