Skip to content

Commit 2a13aa6

Browse files
committed
Remove redundant log
Signed-off-by: Michael Sverdlov <[email protected]>
1 parent ea701bf commit 2a13aa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

artifactory/commands/utils/precheckrunner/checkrunner_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ func TestRunChecks(t *testing.T) {
3737
for i := uint(0); i < nSuccess; i++ {
3838
runner.AddCheck(successCheck)
3939
}
40-
runAndAssert(t, uint(nSuccess), 0, nil, runner)
40+
runAndAssert(t, nSuccess, 0, nil, runner)
4141
// With failed checks
4242
for i := uint(0); i < nFail; i++ {
4343
runner.AddCheck(failCheck)
4444
}
45-
runAndAssert(t, uint(nSuccess), uint(nFail), nil, runner)
45+
runAndAssert(t, nSuccess, uint(nFail), nil, runner)
4646
// With check that has error
4747
runner.AddCheck(errCheck)
4848
runAndAssert(t, 0, 0, expectedErr, runner)

0 commit comments

Comments
 (0)