From 6551edd06afb6748696b99226024123aa487e2d8 Mon Sep 17 00:00:00 2001 From: mikcl Date: Sun, 20 Nov 2022 18:17:00 +0000 Subject: [PATCH] fixup! fixup! frontend: expose workers as a configurable option --- test/cli/packages_cmd_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cli/packages_cmd_test.go b/test/cli/packages_cmd_test.go index 148eb6029e04..6e4836e31629 100644 --- a/test/cli/packages_cmd_test.go +++ b/test/cli/packages_cmd_test.go @@ -206,7 +206,7 @@ func TestPackagesCmdFlags(t *testing.T) { }, { name: "override-default-workers", - args: []string{"packages", "-vvv", "--workers", "2", coverageImage}, + args: []string{"packages", "-vvv", "-o", "json", "--workers", "2", coverageImage}, assertions: []traitAssertion{ // the application config in the log matches that of what we expect to have been configured. assertInOutput("workers: 2"), @@ -217,7 +217,7 @@ func TestPackagesCmdFlags(t *testing.T) { }, { name: "default-workers", - args: []string{"packages", "-vvv", coverageImage}, + args: []string{"packages", "-vvv", "-o", "json", coverageImage}, assertions: []traitAssertion{ // the application config in the log matches that of what we expect to have been configured. assertInOutput("workers: 1"),