From 5ae17cccdfce39c5d70b6a5edaad1291c7cca8ec Mon Sep 17 00:00:00 2001 From: Eran Turgeman Date: Wed, 8 Jan 2025 17:41:21 +0200 Subject: [PATCH] fixed broken call in test according to recent changes --- xsc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsc_test.go b/xsc_test.go index 740afc15..1f19fe9c 100644 --- a/xsc_test.go +++ b/xsc_test.go @@ -209,7 +209,7 @@ func getAuditCommandWithXscGitContext(gitInfoContext xscservices.XscGitInfoConte auditCmd.SetGitRepoHttpsCloneUrl(gitInfoContext.GitRepoHttpsCloneUrl) err = progressbar.ExecWithProgress(auditCmd) // Send the final event to the platform. - xsc.SendScanEndedEvent(xrayVersion, xscVersion, serverDetails, multiScanId, startTime, 0, err) + xsc.SendScanEndedEvent(xrayVersion, xscVersion, serverDetails, multiScanId, startTime, 0, nil, err) return err }, }