From c5ef834f057e802f9788798ac42c41f1ddeff996 Mon Sep 17 00:00:00 2001 From: Gavin Bunney Date: Wed, 9 Oct 2019 12:10:47 -0700 Subject: [PATCH] go fmt --- bitbucket/data_application_properties.go | 22 +++++++++---------- bitbucket/data_application_properties_test.go | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bitbucket/data_application_properties.go b/bitbucket/data_application_properties.go index 1675dfb..ce0e3ae 100644 --- a/bitbucket/data_application_properties.go +++ b/bitbucket/data_application_properties.go @@ -7,9 +7,9 @@ import ( ) type ApplicationProperties struct { - Version string `json:"version,omitempty"` + Version string `json:"version,omitempty"` BuildNumber string `json:"buildNumber,omitempty"` - BuildDate string `json:"buildDate,omitempty"` + BuildDate string `json:"buildDate,omitempty"` DisplayName string `json:"displayName,omitempty"` } @@ -19,20 +19,20 @@ func dataSourceApplicationProperties() *schema.Resource { Schema: map[string]*schema.Schema{ "version": { - Type: schema.TypeString, - Computed: true, + Type: schema.TypeString, + Computed: true, }, "build_number": { - Type: schema.TypeString, - Computed: true, + Type: schema.TypeString, + Computed: true, }, "build_date": { - Type: schema.TypeString, - Computed: true, + Type: schema.TypeString, + Computed: true, }, "display_name": { - Type: schema.TypeString, - Computed: true, + Type: schema.TypeString, + Computed: true, }, }, } @@ -68,4 +68,4 @@ func dataSourceApplicationPropertiesRead(d *schema.ResourceData, m interface{}) } return nil -} \ No newline at end of file +} diff --git a/bitbucket/data_application_properties_test.go b/bitbucket/data_application_properties_test.go index b119025..4d9d9aa 100644 --- a/bitbucket/data_application_properties_test.go +++ b/bitbucket/data_application_properties_test.go @@ -12,8 +12,8 @@ func TestAccBitbucketDataApplicationProperties(t *testing.T) { ` resource.Test(t, resource.TestCase{ - PreCheck: func() { testAccPreCheck(t) }, - Providers: testAccProviders, + PreCheck: func() { testAccPreCheck(t) }, + Providers: testAccProviders, Steps: []resource.TestStep{ { Config: config,