From 6133840f4920e37f44c170e238bbabde23d73cf7 Mon Sep 17 00:00:00 2001 From: liyongxin Date: Thu, 13 Sep 2018 14:08:39 +0800 Subject: [PATCH] typo fix from existant to existent Signed-off-by: liyongxin Signed-off-by: Yongxin Li --- registry/proxy/proxymanifeststore_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/proxy/proxymanifeststore_test.go b/registry/proxy/proxymanifeststore_test.go index b80b303e..99aaed28 100644 --- a/registry/proxy/proxymanifeststore_test.go +++ b/registry/proxy/proxymanifeststore_test.go @@ -217,7 +217,7 @@ func TestProxyManifests(t *testing.T) { t.Fatalf("Error checking existence") } if !exists { - t.Errorf("Unexpected non-existant manifest") + t.Errorf("Unexpected non-existent manifest") } if (*localStats)["exists"] != 1 && (*remoteStats)["exists"] != 1 { @@ -252,7 +252,7 @@ func TestProxyManifests(t *testing.T) { t.Fatal(err) } if !exists { - t.Errorf("Unexpected non-existant manifest") + t.Errorf("Unexpected non-existent manifest") } if (*localStats)["exists"] != 2 && (*remoteStats)["exists"] != 1 {