From 5dadb82f65cac5e171ea69a7cff445ee6123334b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?n=CE=B9c=D0=BDola=D1=95=20w=CE=B9lde?= Date: Sat, 23 Apr 2022 02:40:57 -0700 Subject: [PATCH] remove unused imagePath variable --- pkg/cook/recipe_info_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cook/recipe_info_test.go b/pkg/cook/recipe_info_test.go index d5750bc..b203534 100644 --- a/pkg/cook/recipe_info_test.go +++ b/pkg/cook/recipe_info_test.go @@ -37,7 +37,7 @@ func TestGetImagePath(t *testing.T) { recipeInfo.RecipePath = "testdata/Recipe3.cook" recipeInfo.RecipeName = "Recipe3" - imagePath, err = GetImagePath(recipeInfo) + _, err = GetImagePath(recipeInfo) require.Error(t, err) }