Move e2e/ to internal/e2e/

This is part of a general effort to move all of Terraform's non-library
package surface under internal in order to reinforce that these are for
internal use within Terraform only.

If you were previously importing packages under this prefix into an
external codebase, you could pin to an earlier release tag as an interim
solution until you've make a plan to achieve the same functionality some
other way.
This commit is contained in:
Martin Atkins
2021-05-17 09:48:22 -07:00
parent 4c5b866dea
commit 415ab31db8
15 changed files with 14 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ import (
"os"
"testing"
"github.com/hashicorp/terraform/e2e"
"github.com/hashicorp/terraform/internal/e2e"
)
var bundleBin string

View File

@@ -9,7 +9,7 @@ import (
"strings"
"testing"
"github.com/hashicorp/terraform/e2e"
"github.com/hashicorp/terraform/internal/e2e"
)
func TestPackage_empty(t *testing.T) {