From 2e2966ae9e6a673e194e4fad1bedf876d33b27fb Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 28 Jun 2022 08:54:29 -0700 Subject: [PATCH] Remove test basis config helper function --- internal/core/testing_basis.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/core/testing_basis.go b/internal/core/testing_basis.go index 06cb61f04..080d9821f 100644 --- a/internal/core/testing_basis.go +++ b/internal/core/testing_basis.go @@ -105,10 +105,3 @@ func TestBasis(t testing.T, opts ...BasisOption) (b *Basis) { b, _ = NewBasis(context.Background(), append(defaultOpts, opts...)...) return } - -// func WithTestBasisConfig(config *vagrant_plugin_sdk.Vagrantfile_Vagrantfile) BasisOption { -// return func(m *Basis) (err error) { -// m.basis.Configuration = config -// return -// } -// }