aboutsummaryrefslogtreecommitdiffhomepage
path: root/resource_statuscaketest.go
diff options
context:
space:
mode:
authorLee Johnson <leejohnson@ijoinsolutions.com>2016-11-29 16:03:58 -0500
committerLee Johnson <leejohnson@ijoinsolutions.com>2016-11-29 16:03:58 -0500
commit312d16361a769314812c256f7433bcb0f2c72193 (patch)
tree5f35b10b1463b11186e3048212b10875503cb0b3 /resource_statuscaketest.go
parent2f15340f09a2a9dd12f9a47c009b9743e0d2f2db (diff)
downloadterraform-provider-statuscake-312d16361a769314812c256f7433bcb0f2c72193.tar.gz
terraform-provider-statuscake-312d16361a769314812c256f7433bcb0f2c72193.tar.zst
terraform-provider-statuscake-312d16361a769314812c256f7433bcb0f2c72193.zip
simplifying tests by removing tests and test data that is no longer needed
Diffstat (limited to 'resource_statuscaketest.go')
-rw-r--r--resource_statuscaketest.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/resource_statuscaketest.go b/resource_statuscaketest.go
index 389a7d6..a1d7354 100644
--- a/resource_statuscaketest.go
+++ b/resource_statuscaketest.go
@@ -58,10 +58,6 @@ func resourceStatusCakeTest() *schema.Resource {
58 Type: schema.TypeInt, 58 Type: schema.TypeInt,
59 Computed: true, 59 Computed: true,
60 }, 60 },
61 "contact_id": &schema.Schema{
62 Type: schema.TypeInt,
63 Optional: true,
64 },
65 }, 61 },
66 } 62 }
67} 63}
@@ -74,7 +70,6 @@ func CreateTest(d *schema.ResourceData, meta interface{}) error {
74 WebsiteURL: d.Get("website_url").(string), 70 WebsiteURL: d.Get("website_url").(string),
75 TestType: d.Get("test_type").(string), 71 TestType: d.Get("test_type").(string),
76 CheckRate: d.Get("check_rate").(int), 72 CheckRate: d.Get("check_rate").(int),
77 ContactID: d.Get("contact_id").(int),
78 } 73 }
79 74
80 log.Printf("[DEBUG] Creating new StatusCake Test: %s", d.Get("website_name").(string)) 75 log.Printf("[DEBUG] Creating new StatusCake Test: %s", d.Get("website_name").(string))