From b5c23695c93e51afee284cefe4bdf2235040044f Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 24 Jan 2018 12:09:41 +0000 Subject: [PATCH] Correct a spelling mistake. --- internal/cache/backend_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cache/backend_test.go b/internal/cache/backend_test.go index dc7270a89..dbcd53326 100644 --- a/internal/cache/backend_test.go +++ b/internal/cache/backend_test.go @@ -71,7 +71,7 @@ func TestBackend(t *testing.T) { // load data via cache loadAndCompare(t, wbe, h, data) if !c.Has(h) { - t.Errorf("cache dosen't have file after load") + t.Errorf("cache doesn't have file after load") } // remove via cache @@ -83,7 +83,7 @@ func TestBackend(t *testing.T) { // save via cache save(t, wbe, h, data) if !c.Has(h) { - t.Errorf("cache dosen't have file after load") + t.Errorf("cache doesn't have file after load") } // load data directly from backend