Skip to content

Commit

Permalink
Fix lint warnings on rwmutex tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pierluca authored Oct 21, 2023
1 parent b88fa46 commit 54d5c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sync/rwmutex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ func parallelReaders() {
doTestParallelReaders(4, 2)
}

func TestParallelReadersDebugOff(t *testing.T) {
func TestParallelReadersDebugOff(_ *testing.T) {
DebugIsOn = false
parallelReaders()
}

func TestParallelReadersDebugOn(t *testing.T) {
func TestParallelReadersDebugOn(_ *testing.T) {
DebugIsOn = true
parallelReaders()
}
Expand Down

0 comments on commit 54d5c27

Please sign in to comment.