minor fix
This commit is contained in:
parent
9fc5a37e84
commit
290ccee990
|
@ -27,7 +27,7 @@ func TestAuditFile_fileModeNew(t *testing.T) {
|
||||||
Config: config,
|
Config: config,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
defer os.Remove(file)
|
defer os.Remove(file)
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ func TestAuditFile_fileModeExisting(t *testing.T) {
|
||||||
Config: config,
|
Config: config,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
info, err := os.Stat(file)
|
info, err := os.Stat(file)
|
||||||
|
|
Loading…
Reference in a new issue