From a108393b8cdd052e9aaf0f960ac64b1919051cf9 Mon Sep 17 00:00:00 2001 From: songlh Date: Fri, 17 Dec 2021 15:41:34 -0500 Subject: [PATCH] add spaces to comments --- pkg/util/async/bounded_frequency_runner_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/util/async/bounded_frequency_runner_test.go b/pkg/util/async/bounded_frequency_runner_test.go index 348169fb4e8..9601d0c1694 100644 --- a/pkg/util/async/bounded_frequency_runner_test.go +++ b/pkg/util/async/bounded_frequency_runner_test.go @@ -277,8 +277,8 @@ func Test_BoundedFrequencyRunnerNoBurst(t *testing.T) { // Clean up. stop <- struct{}{} - //a message is sent to time.updated in func Stop() at the end of the child goroutine - //to terminate the child, a receive on time.updated is needed here + // a message is sent to time.updated in func Stop() at the end of the child goroutine + // to terminate the child, a receive on time.updated is needed here <- time.updated } @@ -361,8 +361,8 @@ func Test_BoundedFrequencyRunnerBurst(t *testing.T) { // Clean up. stop <- struct{}{} - //a message is sent to time.updated in func Stop() at the end of the child goroutine - //to terminate the child, a receive on time.updated is needed here + // a message is sent to time.updated in func Stop() at the end of the child goroutine + // to terminate the child, a receive on time.updated is needed here <- time.updated } @@ -447,7 +447,7 @@ func Test_BoundedFrequencyRunnerRetryAfter(t *testing.T) { // Clean up. stop <- struct{}{} - //a message is sent to time.updated in func Stop() at the end of the child goroutine - //to terminate the child, a receive on time.updated is needed here + // a message is sent to time.updated in func Stop() at the end of the child goroutine + // to terminate the child, a receive on time.updated is needed here <- time.updated }