linters: enable stylecheck (#4153)

Refs #3262
This commit is contained in:
Anton Kaliaev
2019-11-16 19:35:39 +04:00
committed by GitHub
parent 36ba1a8494
commit 3e1516b624
137 changed files with 590 additions and 589 deletions

View File

@@ -109,7 +109,7 @@ func _TestGCFifo(t *testing.T) {
_ = done
if *gcCount != numElements {
t.Errorf("Expected gcCount to be %v, got %v", numElements,
t.Errorf("expected gcCount to be %v, got %v", numElements,
*gcCount)
}
}
@@ -157,7 +157,7 @@ func _TestGCRandom(t *testing.T) {
time.Sleep(time.Second * 3)
if gcCount != numElements {
t.Errorf("Expected gcCount to be %v, got %v", numElements,
t.Errorf("expected gcCount to be %v, got %v", numElements,
gcCount)
}
}