Skip to content

Commit

Permalink
Removed unnecessary fmt.Println statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinmwinuka committed May 8, 2024
1 parent 63524c0 commit b3ceecf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/modules/admin/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ func Test_AdminCommand(t *testing.T) {
}
// If we expect an error, check if the error matches the one we expect.
if tests[i].wantExecErr != nil {
fmt.Println("RES: ", r)
if !strings.Contains(strings.ToLower(r.Error().Error()), strings.ToLower(tests[i].wantExecErr.Error())) {
t.Errorf("expected error to contain \"%s\", got \"%s\"", tests[i].wantExecErr.Error(), r.Error().Error())
return
Expand Down

0 comments on commit b3ceecf

Please sign in to comment.