Skip to content

Commit 85c7900

Browse files
jinnovationernesto-jimenez
authored andcommitted
Correct typo in assert.InDeltaMapValues
s/numbe/number
1 parent 33e9130 commit 85c7900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assert/assertions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ func InDeltaMapValues(t TestingT, expected, actual interface{}, delta float64, m
947947
actualMap := reflect.ValueOf(actual)
948948

949949
if expectedMap.Len() != actualMap.Len() {
950-
return Fail(t, "Arguments must have the same numbe of keys", msgAndArgs...)
950+
return Fail(t, "Arguments must have the same number of keys", msgAndArgs...)
951951
}
952952

953953
for _, k := range expectedMap.MapKeys() {

0 commit comments

Comments
 (0)