Chore: code style improvements (#361)

This commit is contained in:
Kirill Motkov
2019-10-14 12:13:23 +03:00
committed by Dreamacro
parent 710cd5aed2
commit f4326daaa4
4 changed files with 12 additions and 10 deletions

View File

@ -28,7 +28,7 @@ func TestObservable(t *testing.T) {
}
count := 0
for range data {
count = count + 1
count++
}
if count != 5 {
t.Error("Revc number error")
@ -46,7 +46,7 @@ func TestObservable_MutilSubscribe(t *testing.T) {
wg.Add(2)
waitCh := func(ch <-chan interface{}) {
for range ch {
count = count + 1
count++
}
wg.Done()
}