From 1294b4861bc2f14f0fa11db1c5bf9bf96503d240 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 21 Jan 2025 17:30:19 +0100 Subject: [PATCH] replace notEmpty with nonZero --- acceptance/acceptance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/acceptance_test.go b/acceptance/acceptance_test.go index 47be3cbe8..1d3f7e624 100644 --- a/acceptance/acceptance_test.go +++ b/acceptance/acceptance_test.go @@ -62,7 +62,7 @@ func TestInprocessMode(t *testing.T) { t.Skip("Already tested by TestAccept") } t.Setenv("NO_COLOR", "1") - require.NotEmpty(t, testAccept(t, true, "help")) + require.NotZero(t, testAccept(t, true, "help")) } func testAccept(t *testing.T, InprocessMode bool, singleTest string) int {