Cleanup extra returns in tests

Signed-off-by: Daniel Nephin <dnephin@gmail.com>
This commit is contained in:
Daniel Nephin
2018-01-23 13:19:20 -05:00
parent cee56a1226
commit 1cd32fa68d
6 changed files with 273 additions and 546 deletions

View File

@@ -184,7 +184,6 @@ func TestImagePull(t *testing.T) {
defer cancel()
_, err = client.Pull(ctx, testImage)
if err != nil {
t.Error(err)
return
t.Fatal(err)
}
}