From e50e8da5c493b37bff754d816c11218eba03d715 Mon Sep 17 00:00:00 2001 From: Joey Jiao Date: Thu, 11 Jul 2024 08:19:38 +0800 Subject: pkg/report: remove args which already in ctx --- pkg/report/linux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/report/linux_test.go') diff --git a/pkg/report/linux_test.go b/pkg/report/linux_test.go index 756576e98..f24b72d59 100644 --- a/pkg/report/linux_test.go +++ b/pkg/report/linux_test.go @@ -291,7 +291,7 @@ func TestLinuxSymbolizeLine(t *testing.T) { } for i, test := range tests { t.Run(fmt.Sprint(i), func(t *testing.T) { - result := symbolizeLine(symb, symbols, modules, "/linux", ctx, []byte(test.line)) + result := symbolizeLine(symb, ctx, []byte(test.line)) if test.result != string(result) { t.Errorf("want %q\n\t get %q", test.result, string(result)) } -- cgit mrf-deployment