Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
functional: Remove unnecessary underscore
Browse files Browse the repository at this point in the history
Signed-off-by: Nitin Goyal <nigoyal@redhat.com>
  • Loading branch information
iamniting authored and phlogistonjohn committed Jul 16, 2020
1 parent 676805e commit df2ce1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/TestErrorHandling/tests/brick_evict_test.go
Expand Up @@ -113,7 +113,7 @@ func TestBrickEvict(t *testing.T) {
for _, b := range vinfo1.Bricks {
evictBricks[b.Id] = true
}
for toEvict, _ := range evictBricks {
for toEvict := range evictBricks {
err = heketi.BrickEvict(toEvict, nil)
tests.Assert(t, err == nil, "expected err == nil, got:", err)
}
Expand Down Expand Up @@ -144,7 +144,7 @@ func TestBrickEvict(t *testing.T) {
evictResults := map[string]error{}
wg := sync.WaitGroup{}
l := sync.Mutex{}
for toEvict, _ := range evictBricks {
for toEvict := range evictBricks {
wg.Add(1)
go func(toEvict string) {
defer wg.Done()
Expand Down

0 comments on commit df2ce1f

Please sign in to comment.