integration_test: Replace fprintf without format string

This commit is contained in:
Michael Eischer 2020-03-06 23:42:34 +01:00
parent 068a3ce23f
commit b22655367c
1 changed files with 1 additions and 1 deletions

View File

@ -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())
}