cleanup Go linter settings (#16736)

This commit is contained in:
ferhat elmas
2023-03-05 05:57:35 +01:00
committed by GitHub
parent 9d062b37d7
commit 3423028713
13 changed files with 59 additions and 52 deletions

View File

@@ -63,7 +63,7 @@ func testSimpleWriteLock(t *testing.T, duration time.Duration) (locked bool) {
lrwm.Unlock()
} else {
// fmt.Println("Write lock failed due to timeout")
t.Log("Write lock failed due to timeout")
}
return
}
@@ -109,7 +109,7 @@ func testDualWriteLock(t *testing.T, duration time.Duration) (locked bool) {
lrwm.Unlock()
} else {
// fmt.Println("2nd write lock failed due to timeout")
t.Log("2nd write lock failed due to timeout")
}
return
}