Skip to content

Commit 26d4a37

Browse files
xtonyjianggeorgelesica-wf
authored andcommitted
Fix typo ("PASS" -> "FAIL")
Fixes #669
1 parent 865fb2c commit 26d4a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mock/mock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ func (args Arguments) Diff(objects []interface{}) (string, int) {
691691
output = fmt.Sprintf("%s\t%d: PASS: %s matched by %s\n", output, i, actualFmt, matcher)
692692
} else {
693693
differences++
694-
output = fmt.Sprintf("%s\t%d: PASS: %s not matched by %s\n", output, i, actualFmt, matcher)
694+
output = fmt.Sprintf("%s\t%d: FAIL: %s not matched by %s\n", output, i, actualFmt, matcher)
695695
}
696696
} else if reflect.TypeOf(expected) == reflect.TypeOf((*AnythingOfTypeArgument)(nil)).Elem() {
697697

0 commit comments

Comments
 (0)