From 4eeeab6482a659f2a3c4077a38bb3c83967666ac Mon Sep 17 00:00:00 2001 From: stack72 Date: Thu, 8 Oct 2015 15:36:11 +0100 Subject: Added some acceptance tests for the statuscake provider --- provider.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'provider.go') diff --git a/provider.go b/provider.go index 7d96e0e..abca376 100644 --- a/provider.go +++ b/provider.go @@ -1,7 +1,7 @@ package statuscake import ( - wtf "github.com/DreamItGetIT/statuscake" + "github.com/DreamItGetIT/statuscake" "github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/terraform" ) @@ -32,9 +32,9 @@ func Provider() terraform.ResourceProvider { } func providerConfigure(d *schema.ResourceData) (interface{}, error) { - auth := wtf.Auth{ + auth := statuscake.Auth{ Username: d.Get("username").(string), Apikey: d.Get("apikey").(string), } - return wtf.New(auth) + return statuscake.New(auth) } -- cgit v1.2.3