From 4ed4e88e8a5dbad3ce1e6ee0549f018f61cbbfc5 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Tue, 17 Dec 2019 13:18:20 -0500 Subject: [PATCH] spelling: extractor Signed-off-by: Josh Soref --- pkg/plugin/installer/http_installer_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/plugin/installer/http_installer_test.go b/pkg/plugin/installer/http_installer_test.go index 89884f107..cfa2e4cbe 100644 --- a/pkg/plugin/installer/http_installer_test.go +++ b/pkg/plugin/installer/http_installer_test.go @@ -234,12 +234,12 @@ func TestExtract(t *testing.T) { gz.Close() // END tarball creation - extr, err := NewExtractor(source) + extractor, err := NewExtractor(source) if err != nil { t.Fatal(err) } - if err = extr.Extract(&buf, tempDir); err != nil { + if err = extractor.Extract(&buf, tempDir); err != nil { t.Errorf("Did not expect error but got error: %v", err) }