audio/internal/convert: bug fix: the test input must be even number of float32s

This commit is contained in:
Hajime Hoshi 2024-07-21 11:10:20 +09:00
parent a5213de991
commit e43ab06f35

View File

@ -43,8 +43,8 @@ func TestStereoF32(t *testing.T) {
In: nil,
},
{
Name: "-1, 0, 1",
In: []float32{-1, 0, 1},
Name: "-1, 0, 1, 0",
In: []float32{-1, 0, 1, 0},
},
{
Name: "8 0s",