Merge pull request #1482 from stweil/master

Fix some typos in comments and strings
This commit is contained in:
Brian Bland 2016-02-23 14:08:21 -08:00
commit bb4d128523
6 changed files with 7 additions and 7 deletions

View file

@ -213,7 +213,7 @@ func TestProxyManifests(t *testing.T) {
// Stat - must check local and remote
exists, err := env.manifests.Exists(ctx, env.manifestDigest)
if err != nil {
t.Fatalf("Error checking existance")
t.Fatalf("Error checking existence")
}
if !exists {
t.Errorf("Unexpected non-existant manifest")

View file

@ -45,7 +45,7 @@ func TestSchedule(t *testing.T) {
}
_, ok := remainingRepos[repoName.String()]
if !ok {
t.Fatalf("Trying to remove nonexistant repo: %s", repoName)
t.Fatalf("Trying to remove nonexistent repo: %s", repoName)
}
t.Log("removing", repoName)
delete(remainingRepos, repoName.String())
@ -86,7 +86,7 @@ func TestRestoreOld(t *testing.T) {
}
_, ok := remainingRepos[r.String()]
if !ok {
t.Fatalf("Trying to remove nonexistant repo: %s", r)
t.Fatalf("Trying to remove nonexistent repo: %s", r)
}
delete(remainingRepos, r.String())
return nil