From b1739bfdad9ffa70b0fc9cca3b1aa47ceda69ba2 Mon Sep 17 00:00:00 2001 From: nritholtz Date: Wed, 17 Oct 2018 14:04:37 -0400 Subject: [PATCH] test: Fix path dir to terrafile --- main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_test.go b/main_test.go index 6111cef..d77d3c0 100644 --- a/main_test.go +++ b/main_test.go @@ -26,7 +26,7 @@ func TestTerraformWithTerrafilePath(t *testing.T) { folder, back := setup(t) defer back() - testcli.Run(terrafileBinaryPath, "-f", fmt.Sprint(folder, "/terrafile")) + testcli.Run(terrafileBinaryPath, "-f", fmt.Sprint(folder, "/Terrafile")) if !testcli.Success() { t.Fatalf("Expected to succeed, but failed: %q with message: %q", testcli.Error(), testcli.Stderr())