From ec99cb763cd7a20b27baf820886c6e049cf5c2df Mon Sep 17 00:00:00 2001 From: algonautshant Date: Mon, 13 Dec 2021 08:50:54 -0500 Subject: [PATCH] remove printf --- test/e2e-go/features/catchup/basicCatchup_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/e2e-go/features/catchup/basicCatchup_test.go b/test/e2e-go/features/catchup/basicCatchup_test.go index c08f729ca1..0e37f43e62 100644 --- a/test/e2e-go/features/catchup/basicCatchup_test.go +++ b/test/e2e-go/features/catchup/basicCatchup_test.go @@ -17,7 +17,6 @@ package catchup import ( - "fmt" "os" "path/filepath" "testing" @@ -414,7 +413,6 @@ func TestBasicCatchupCompletes(t *testing.T) { currentStateMsec := time.Duration(curStatus.CatchupTime).Milliseconds() catchupMsec := catchupTime.Milliseconds() pass = currentStateMsec < catchupMsec - fmt.Printf("%d / 50 currentStateMsec %d catchupMsec %d\n", x, currentStateMsec, catchupMsec) if pass { break }