mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
command/push: fix tests to be vcs=false GH-8478
This commit is contained in:
parent
fc67b63d63
commit
2f8baa4580
@ -107,6 +107,7 @@ func TestPush_noUploadModules(t *testing.T) {
|
||||
defer os.Remove(testStateFileRemote(t, s))
|
||||
|
||||
args := []string{
|
||||
"-vcs=false",
|
||||
"-name=mitchellh/tf-test",
|
||||
"-upload-modules=false",
|
||||
path,
|
||||
@ -115,9 +116,14 @@ func TestPush_noUploadModules(t *testing.T) {
|
||||
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||||
}
|
||||
|
||||
// NOTE: The duplicates below are not ideal but are how things work
|
||||
// currently due to how we manually add the files to the archive. This
|
||||
// is definitely a "bug" we can fix in the future.
|
||||
actual := testArchiveStr(t, archivePath)
|
||||
expected := []string{
|
||||
".terraform/",
|
||||
".terraform/",
|
||||
".terraform/terraform.tfstate",
|
||||
".terraform/terraform.tfstate",
|
||||
"child/",
|
||||
"child/main.tf",
|
||||
|
Loading…
Reference in New Issue
Block a user