Skip to content

Commit

Permalink
data_source_storage_account_sas_test.go make test names similar
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte authored May 20, 2018
1 parent 5bc7264 commit 71350a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions azurerm/data_source_storage_account_sas_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"
)

func TestAccDataSourceArmStorageAccountSasRead(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_basic(t *testing.T) {
dataSourceName := "data.azurerm_storage_account_sas.test"
rInt := acctest.RandInt()
rString := acctest.RandString(4)
Expand Down Expand Up @@ -84,7 +84,7 @@ data "azurerm_storage_account_sas" "test" {
`, rInt, location, rString, startDate, endDate)
}

func TestParseAzureStorageAccountConnectionString(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_connectionString(t *testing.T) {
testCases := []struct {
input string
expectedAccountName string
Expand Down Expand Up @@ -113,7 +113,7 @@ func TestParseAzureStorageAccountConnectionString(t *testing.T) {

}

func TestBuildResourceTypesString(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_resourceTypesString(t *testing.T) {
testCases := []struct {
input map[string]interface{}
expected string
Expand All @@ -132,7 +132,7 @@ func TestBuildResourceTypesString(t *testing.T) {
}
}

func TestBuildServicesString(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_servicesString(t *testing.T) {
testCases := []struct {
input map[string]interface{}
expected string
Expand All @@ -153,7 +153,7 @@ func TestBuildServicesString(t *testing.T) {

}

func TestBuildPermissionsString(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_permissionsString(t *testing.T) {
testCases := []struct {
input map[string]interface{}
expected string
Expand Down Expand Up @@ -181,7 +181,7 @@ func TestBuildPermissionsString(t *testing.T) {
// so its safe to include here for reference to understand the format.
// DefaultEndpointsProtocol=https;AccountName=azurermtestsa0;AccountKey=T0ZQouXBDpWud/PlTRHIJH2+VUK8D+fnedEynb9Mx638IYnsMUe4mv1fFjC7t0NayTfFAQJzPZuV1WHFKOzGdg==;EndpointSuffix=core.windows.net

func TestComputeAzureStorageAccountSas(t *testing.T) {
func TestAccDataSourceArmStorageAccountSas_computeSas(t *testing.T) {
testCases := []struct {
accountName string
accountKey string
Expand Down

0 comments on commit 71350a4

Please sign in to comment.