diff --git a/assert/assertions.go b/assert/assertions.go index 2015555..a1360fd 100644 --- a/assert/assertions.go +++ b/assert/assertions.go @@ -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() {