Skip to content

Commit

Permalink
Fix lint warnings on waitgroup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pierluca authored Oct 21, 2023
1 parent 105889e commit b88fa46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sync/waitgroup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ func waitGroupAlign() {
x.wg.Wait()
}

func TestWaitGroupAlignDebugOff(t *testing.T) {
func TestWaitGroupAlignDebugOff(_ *testing.T) {
DebugIsOn = false
waitGroupAlign()
}

func TestWaitGroupAlignDebugOn(t *testing.T) {
func TestWaitGroupAlignDebugOn(_ *testing.T) {
DebugIsOn = true
waitGroupAlign()
}

0 comments on commit b88fa46

Please sign in to comment.