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

@ -15,6 +15,6 @@ func TestRandomRegression(t *testing.T) {
randomSequence := New(randomProvider)
randomValues := randomSequence.Array()
assert.Len(randomValues, 4096)
assert.Len(4096, randomValues)
assert.InDelta(128, randomSequence.Average(), 10.0)
}