Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
rbd: fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
  • Loading branch information
dotnwat committed Jan 15, 2015
1 parent 9a1b29d commit 6fb5e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rbd/rbd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestGetImageNames(t *testing.T) {
createdList := []string{}
for i := 0; i < 10; i++ {
name := GetUUID()
err = rbd.Create(ioctx, name, 1<<22)
_, err := rbd.Create(ioctx, name, 1<<22)
assert.NoError(t, err)
createdList = append(createdList, name)
}
Expand Down

0 comments on commit 6fb5e09

Please sign in to comment.