fixing tests

This commit is contained in:
Will Charczuk 2018-04-05 00:47:39 -07:00
parent 70e6cfddc5
commit 7c3982fe3d
16 changed files with 31 additions and 30 deletions

View file

@ -99,7 +99,7 @@ func TestNormalize(t *testing.T) {
values := []float64{10, 9, 8, 7, 6}
normalized := Math.Normalize(values...)
assert.Len(normalized, 5)
assert.Len(5, normalized)
assert.Equal(0.25, normalized[0])
assert.Equal(0.1499, normalized[4])
}