From e1f665aec1e02897d75665c87ebaec0e9d9aaae9 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Thu, 26 Sep 2024 22:53:02 +0100 Subject: [PATCH] fix(go): updated function name. --- tests/integration/suite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/suite.go b/tests/integration/suite.go index abb08cfd..26ef2499 100644 --- a/tests/integration/suite.go +++ b/tests/integration/suite.go @@ -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() }