minor fix

This commit is contained in:
Laura Bennett 2016-10-10 10:05:36 -04:00
parent 9fc5a37e84
commit 290ccee990
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ func TestAuditFile_fileModeNew(t *testing.T) {
Config: config,
})
if err != nil {
t.Fatalf(err)
t.Fatal(err)
}
defer os.Remove(file)
@ -61,7 +61,7 @@ func TestAuditFile_fileModeExisting(t *testing.T) {
Config: config,
})
if err != nil {
t.Fatalf(err)
t.Fatal(err)
}
info, err := os.Stat(file)