mirror of https://github.com/restic/restic.git
Fix compatibility with Go < 1.5
This commit is contained in:
parent
23aeca85ff
commit
5a45d95b80
|
@ -1384,8 +1384,7 @@ func BenchmarkDelayedWalkTree(t *testing.B) {
|
|||
treeJobs := make(chan restic.WalkTreeJob)
|
||||
go restic.WalkTree(dr, root, nil, treeJobs)
|
||||
|
||||
for range treeJobs {
|
||||
// fmt.Printf("job: %v\n", job)
|
||||
for _ = range treeJobs {
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue