1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #28980 from lixiaobing10051267/masterReference

checkt t.Fatalf information for reference path
This commit is contained in:
Vincent Demeester 2016-11-30 21:49:26 +01:00 committed by GitHub
commit 9d47927984
2 changed files with 2 additions and 2 deletions

View file

@ -229,7 +229,7 @@ func TestParseRepositoryInfo(t *testing.T) {
t.Fatalf("Invalid normalized reference for %q. Expected %q, got %q", r, expected, actual)
}
if expected, actual := tcase.FullName, r.FullName(); expected != actual {
t.Fatalf("Invalid normalized reference for %q. Expected %q, got %q", r, expected, actual)
t.Fatalf("Invalid fullName for %q. Expected %q, got %q", r, expected, actual)
}
if expected, actual := tcase.Hostname, r.Hostname(); expected != actual {
t.Fatalf("Invalid hostname for %q. Expected %q, got %q", r, expected, actual)

View file

@ -350,7 +350,7 @@ func TestInvalidTags(t *testing.T) {
}
err = store.AddTag(ref, id, true)
if err == nil {
t.Fatalf("expected setting digest %q to fail", ref)
t.Fatalf("expected setting tag %q to fail", ref)
}
}