Correct typo in assert.InDeltaMapValues

s/numbe/number
codeowners
Jonathan Jin 2018-01-11 14:56:28 -05:00 committed by Ernesto Jiménez
parent 33e91307d5
commit 85c790041a
1 changed files with 1 additions and 1 deletions

View File

@ -947,7 +947,7 @@ func InDeltaMapValues(t TestingT, expected, actual interface{}, delta float64, m
actualMap := reflect.ValueOf(actual)
if expectedMap.Len() != actualMap.Len() {
return Fail(t, "Arguments must have the same numbe of keys", msgAndArgs...)
return Fail(t, "Arguments must have the same number of keys", msgAndArgs...)
}
for _, k := range expectedMap.MapKeys() {