summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/verify/verify_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/verify/verify_test.go b/internal/verify/verify_test.go
index bb270a4..2c499b1 100644
--- a/internal/verify/verify_test.go
+++ b/internal/verify/verify_test.go
@@ -372,11 +372,11 @@ func compareResults(
if !strings.HasPrefix(err.Error(), expectedErrPrefix) {
// wrong error
- t.Errorf("expected error prefix '%s' for error '%s', callstr '%s'", expectedErrPrefix, err.Error(), callStr())
+ t.Errorf("expected error prefix '%s' for error '%s', callstr: '%s'", expectedErrPrefix, err.Error(), callStr())
return
}
if ret {
- t.Errorf("error is not nil and result is true, '%s'", callStr())
+ t.Errorf("error is not nil and result is true, callstr: '%s'", callStr())
}
}