From 17256317c951fe9551474c9927d26a2b490ceda3 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Thu, 18 May 2023 12:52:52 +0000 Subject: [PATCH] test: fix function name --- distro/debian/debian_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distro/debian/debian_test.go b/distro/debian/debian_test.go index 53e0b43..baf0514 100644 --- a/distro/debian/debian_test.go +++ b/distro/debian/debian_test.go @@ -8,7 +8,7 @@ import ( "code.dumpstack.io/tools/out-of-tree/fs" ) -func TestMatchImagePkg(t *testing.T) { +func TestMatch(t *testing.T) { if os.Getenv("CI") != "" { t.Skip("skip testing in CI") } @@ -28,7 +28,7 @@ func TestMatchImagePkg(t *testing.T) { DistroRelease: "7", } - pkgs, err := MatchImagePkg(km) + pkgs, err := Match(km) if err != nil { t.Fatal(err) }