Skip to content

Commit aaf06f4

Browse files
committed
Fix teardown error formatting
1 parent ba70f09 commit aaf06f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/harness/fixture.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (f *SharedFixture) Teardown() error {
6767
errs = append(errs, fmt.Sprintf("remove fixture config home %s: %v", f.configHome, err))
6868
}
6969
if len(errs) > 0 {
70-
return fmt.Errorf(strings.Join(errs, "\n"))
70+
return fmt.Errorf("%s", strings.Join(errs, "\n"))
7171
}
7272
return nil
7373
}

0 commit comments

Comments
 (0)