From 5245c66afc59324aa53363cef906a02da6a608c1 Mon Sep 17 00:00:00 2001 From: Brian Strauch Date: Thu, 23 Sep 2021 14:14:18 -0700 Subject: [PATCH] fix bad merge --- internal/pkg/config/v3/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/config/v3/config_test.go b/internal/pkg/config/v3/config_test.go index 27cc0ae27..0b69b8413 100644 --- a/internal/pkg/config/v3/config_test.go +++ b/internal/pkg/config/v3/config_test.go @@ -768,7 +768,7 @@ func TestConfig_FindContext(t *testing.T) { func TestConfig_DeleteContext(t *testing.T) { c := &Config{ - BaseConfig: new(config.BaseConfig), + BaseConfig: config.NewBaseConfig(nil, new(version.Version)), Contexts: map[string]*Context{contextName: {Name: contextName}}, CurrentContext: contextName, }