diff options
Diffstat (limited to 'integrationtests/fileutils.go')
| -rw-r--r-- | integrationtests/fileutils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrationtests/fileutils.go b/integrationtests/fileutils.go index a1e1051..ffc26fe 100644 --- a/integrationtests/fileutils.go +++ b/integrationtests/fileutils.go @@ -81,7 +81,7 @@ func compareFiles(t *testing.T, fileA, fileB string) error { if bytes, err := exec.Command("diff", "-u", fileA, fileB).Output(); err != nil { sb.Write(bytes) } - return fmt.Errorf(sb.String()) + return fmt.Errorf("%s", sb.String()) } return nil |
