mirror of
https://github.com/stretchr/testify.git
synced 2025-05-31 11:42:44 +00:00
Correct typo in assert.InDeltaMapValues
s/numbe/number
This commit is contained in:
parent
33e91307d5
commit
85c790041a
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user