fix(go): updated function name.

This commit is contained in:
Alexandre Pujol 2024-09-26 22:53:02 +01:00
parent 00d6a664eb
commit e1f665aec1
No known key found for this signature in database
GPG Key ID: C5469996F0DF68EC

View File

@ -101,7 +101,7 @@ func (t *TestSuite) ReadSettings(path *paths.Path) error {
// Results returns a sum up of the apparmor logs raised by the scenarios
func (t *TestSuite) Results() string {
file, _ := logs.GetAuditLogs(logs.LogFiles[0])
aaLogs := logs.NewApparmorLogs(file, "")
aaLogs := logs.New(file, "")
return aaLogs.String()
}