Fixed order of arguments to assert.Len in test files.

This commit is contained in:
david 2018-07-13 19:00:18 -05:00
parent 9e3a080aa3
commit 48ccd0040d
15 changed files with 29 additions and 29 deletions

View file

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