From bd406f50a5700a9b6849f3b3c12ecd2d65be0bc6 Mon Sep 17 00:00:00 2001 From: bharathkkb Date: Tue, 16 Mar 2021 21:25:17 -0500 Subject: [PATCH] address comments --- test/integration/error_spam_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/error_spam_test.go b/test/integration/error_spam_test.go index 7b85d98d1f..802b4bc2ec 100644 --- a/test/integration/error_spam_test.go +++ b/test/integration/error_spam_test.go @@ -117,7 +117,7 @@ func TestErrorSpam(t *testing.T) { { command: "start", args: []string{"--dry-run", "--log_dir", os.TempDir()}, - runCount: 120, // calling this 15 times should create 2 files with 1 greater than 1M + runCount: 120, // calling this 120 times should create 2 files with 1 greater than 1M expectedLogFiles: 2, }, { @@ -176,7 +176,7 @@ func TestErrorSpam(t *testing.T) { if isSmall && !foundSmall { foundSmall = true } else if isSmall && foundSmall { - t.Errorf("expected to find only one file less than 1M: cmd %s:", test.command) + t.Errorf("expected to find only one file less than 1MB: cmd %s:", test.command) } } }