Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lovromazgon committed Feb 9, 2024
1 parent d232322 commit 82f656a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csync/valuewatcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func TestValueWatcher_Concurrency(t *testing.T) {
defer wg2.Done()
var once sync.Once
var count int
_, err := h.Watch(context.Background(), func(val int) bool {
_, err := h.Watch(context.Background(), func(int) bool {
once.Do(wg1.Done)
count++
// +1 because of first call
Expand Down

0 comments on commit 82f656a

Please sign in to comment.