From 6541b6fdfa809661080a0896a2126fbb73dae4d5 Mon Sep 17 00:00:00 2001 From: Christopher Phillips Date: Mon, 5 Feb 2024 11:33:17 -0500 Subject: [PATCH] chore: fix refactor Signed-off-by: Christopher Phillips --- cliotestutils/application.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliotestutils/application.go b/cliotestutils/application.go index ca4c1ee..2293204 100644 --- a/cliotestutils/application.go +++ b/cliotestutils/application.go @@ -63,7 +63,7 @@ func (a *testApplication) SetupRootCommand(cmd *cobra.Command, cfgs ...any) (*co a.assertion(cmd, args, cfgs...) return nil } - return a.Application.SetupRootCommand(cmd, cfgs...), nil + return a.Application.SetupRootCommand(cmd, cfgs...) } /*