From 4037e2b5914421ca74fc00a2ddcd185b47b71f0a Mon Sep 17 00:00:00 2001 From: "80111+shawnps@users.noreply.github.com" <80111+shawnps@users.noreply.github.com> Date: Sun, 31 Mar 2024 12:32:21 +0900 Subject: [PATCH] pass bool in to Run in test --- check/check_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check/check_test.go b/check/check_test.go index b82a9b90..d39006a3 100644 --- a/check/check_test.go +++ b/check/check_test.go @@ -5,7 +5,7 @@ import ( ) func TestRun(t *testing.T) { - cr, err := Run("testdata/testrepo@v0.1.0") + cr, err := Run("testdata/testrepo@v0.1.0", false) if err != nil { t.Fatal(err) }