mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
command/test: Clarify failure (add full path)
This commit is contained in:
parent
6749287aa3
commit
37f397dded
1 changed files with 2 additions and 1 deletions
|
|
@ -85,7 +85,8 @@ func TestInit_fromModule_explicitDest(t *testing.T) {
|
|||
// is causing a terraform.tfstate to get left behind in our directory
|
||||
// here, which can interfere with our init process in a way that
|
||||
// isn't relevant to this test.
|
||||
t.Fatalf("some other test has left terraform.tfstate behind")
|
||||
fullPath, _ := filepath.Abs(DefaultStateFilename)
|
||||
t.Fatalf("some other test has left terraform.tfstate behind:\n%s", fullPath)
|
||||
}
|
||||
|
||||
args := []string{
|
||||
|
|
|
|||
Loading…
Reference in a new issue