From 8eab91190470b9b0134a4ac52245dc7372e9dfaa Mon Sep 17 00:00:00 2001 From: Kairo Araujo Date: Wed, 27 Dec 2023 09:24:03 +0100 Subject: [PATCH] test: Minor change to increase the coverage (#141) --- cmd/archivistactl/cmd/root_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/archivistactl/cmd/root_test.go b/cmd/archivistactl/cmd/root_test.go index 027296cf..c3b888b7 100644 --- a/cmd/archivistactl/cmd/root_test.go +++ b/cmd/archivistactl/cmd/root_test.go @@ -35,7 +35,7 @@ func (ut *UTRootSuite) Test_Root() { rootCmd.SetOut(output) rootCmd.SetErr(output) rootCmd.SetArgs([]string{"help"}) - err := rootCmd.Execute() + err := Execute() if err != nil { ut.FailNow(err.Error()) }