From 9e37ae3f5d39daea9cbbdc06dfdaf149a3abecfd Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Mon, 16 Oct 2023 09:02:19 +0200 Subject: [PATCH] Make the window a little wider for headless integration tests 100 was an unrealistically narrow width; make it a little wider so that we will have to truncate things less often. --- pkg/integration/components/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/integration/components/test.go b/pkg/integration/components/test.go index e0970f6a2..41c16ac0d 100644 --- a/pkg/integration/components/test.go +++ b/pkg/integration/components/test.go @@ -19,7 +19,7 @@ import ( const unitTestDescription = "test test" const ( - defaultWidth = 100 + defaultWidth = 150 defaultHeight = 100 )