Style: use gofumpt for fmt

This commit is contained in:
xjasonlyu
2022-01-29 17:26:24 +08:00
parent 1d229ac859
commit e23837aa6d
8 changed files with 12 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ func TestObservable_MultiSubscribe(t *testing.T) {
src := NewObservable(iter)
ch1, _ := src.Subscribe()
ch2, _ := src.Subscribe()
var count = atomic.NewInt32(0)
count := atomic.NewInt32(0)
var wg sync.WaitGroup
wg.Add(2)