diff options
author | Nathan Dench <ndench@users.noreply.github.com> | 2019-06-04 08:40:38 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 08:40:38 +1000 |
commit | 03539d597d869600a38d13fd2328fb48fd63aa7d (patch) | |
tree | cfbf065f78e205230c63659a556574a4414755ed | |
parent | 107c1cdb09c575aa2f61d97f48d8587eb6bada4c (diff) | |
parent | 1ff1c28784e83f3b9d441b73baa8c6293133b673 (diff) | |
download | terraform-provider-statuscake-03539d597d869600a38d13fd2328fb48fd63aa7d.tar.gz terraform-provider-statuscake-03539d597d869600a38d13fd2328fb48fd63aa7d.tar.zst terraform-provider-statuscake-03539d597d869600a38d13fd2328fb48fd63aa7d.zip |
Merge pull request #1 from jcalonso/patch-1
Fix acceptance tests
-rw-r--r-- | statuscake/provider_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/statuscake/provider_test.go b/statuscake/provider_test.go index 83045d0..b1da050 100644 --- a/statuscake/provider_test.go +++ b/statuscake/provider_test.go | |||
@@ -35,4 +35,7 @@ func testAccPreCheck(t *testing.T) { | |||
35 | if v := os.Getenv("STATUSCAKE_APIKEY"); v == "" { | 35 | if v := os.Getenv("STATUSCAKE_APIKEY"); v == "" { |
36 | t.Fatal("STATUSCAKE_APIKEY must be set for acceptance tests") | 36 | t.Fatal("STATUSCAKE_APIKEY must be set for acceptance tests") |
37 | } | 37 | } |
38 | if v := os.Getenv("STATUSCAKE_TEST_CONTACT_GROUP_ID"); v == "" { | ||
39 | t.Fatal("STATUSCAKE_TEST_CONTACT_GROUP_ID must be set for acceptance tests") | ||
40 | } | ||
38 | } | 41 | } |