From b95314c964b7869fbd2725805d8cb4c8a93ce67b Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Mon, 19 Aug 2024 19:50:36 +0200 Subject: [PATCH] typo --- pkg/support/throttling/async_throttler_test.go | 1 + pkg/support/throttling/{cloek_test.go => clock_test.go} | 0 2 files changed, 1 insertion(+) rename pkg/support/throttling/{cloek_test.go => clock_test.go} (100%) diff --git a/pkg/support/throttling/async_throttler_test.go b/pkg/support/throttling/async_throttler_test.go index c50449c..ab60034 100644 --- a/pkg/support/throttling/async_throttler_test.go +++ b/pkg/support/throttling/async_throttler_test.go @@ -6,6 +6,7 @@ import ( func (suite *ThrottlerTestSuite) Test_AsyncDeliverOneValue() { value := 0 + pollInterval := 10 * time.Millisecond throttler := NewAsyncThrottler[int](func(v *int) { diff --git a/pkg/support/throttling/cloek_test.go b/pkg/support/throttling/clock_test.go similarity index 100% rename from pkg/support/throttling/cloek_test.go rename to pkg/support/throttling/clock_test.go