swarm/storage: better comment

This commit is contained in:
Anton Evangelatov 2018-04-13 12:45:56 +03:00
parent b13c3b4dbf
commit 04a0d11528

View file

@ -296,7 +296,7 @@ func TestLDBStoreWithoutCollectGarbage(t *testing.T) {
go ldb.Put(chunks[i])
}
// wait for all chunks to be stored before ending the test are cleaning up
// wait for all chunks to be stored
for i := 0; i < n; i++ {
<-chunks[i].dbStoredC
}
@ -347,7 +347,7 @@ func TestLDBStoreCollectGarbage(t *testing.T) {
ldb.Put(chunks[i])
}
// wait for all chunks to be stored before ending the test are cleaning up
// wait for all chunks to be stored
for i := 0; i < n; i++ {
<-chunks[i].dbStoredC
}