From 5f57200d126a42d0596a6ce3da8aeb98dd25cb47 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Wed, 22 Jun 2022 16:33:46 +0200 Subject: [PATCH] Fix broken integration test --- cmd/jb/install_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/jb/install_test.go b/cmd/jb/install_test.go index 90df289..252dc34 100644 --- a/cmd/jb/install_test.go +++ b/cmd/jb/install_test.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build integration // +build integration package main @@ -101,7 +102,7 @@ func testInstallCommandWithJsonnetHome(t *testing.T, jsonnetHome string) { jsonnetFileContent(t, jsonnetfile.File, []byte(initContents)) // install something, check it writes only if required, etc. - installCommand("", jsonnetHome, tc.URIs, tc.single) + installCommand("", jsonnetHome, tc.URIs, tc.single, "") jsonnetFileContent(t, jsonnetfile.File, tc.ExpectedJsonnetFile) if tc.ExpectedJsonnetLockFile != nil { jsonnetFileContent(t, jsonnetfile.LockFile, tc.ExpectedJsonnetLockFile)