1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

Fix Fatal directive formatting.

Signed-off-by: David Calavera <david.calavera@gmail.com>
This commit is contained in:
David Calavera
2016-02-09 15:59:30 -08:00
parent 4b716da070
commit dd7a71bb12
+1 -1
View File
@@ -40,6 +40,6 @@ func TestMissingCredentials(t *testing.T) {
helper := New()
_, _, err := helper.Get("https://adsfasdf.wrewerwer.com/asdfsdddd")
if err != credentials.ErrCredentialsNotFound {
t.Fatal("exptected ErrCredentialsNotFound, got %v", err)
t.Fatalf("exptected ErrCredentialsNotFound, got %v", err)
}
}