integration_test: Replace fprintf without format string
This commit is contained in:
parent
068a3ce23f
commit
b22655367c
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ func TestBackupExclude(t *testing.T) {
|
|||
f, err := os.Create(fp)
|
||||
rtest.OK(t, err)
|
||||
|
||||
fmt.Fprintf(f, filename)
|
||||
fmt.Fprint(f, filename)
|
||||
rtest.OK(t, f.Close())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue