Skip to content

Commit

Permalink
Fixing the test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed May 6, 2018
1 parent a7c1b74 commit 29a4aee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azurerm/data_source_key_vault_secret_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/hashicorp/terraform-website/ext/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
)

Expand Down
4 changes: 2 additions & 2 deletions azurerm/data_source_key_vault_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ func TestAccDataSourceAzureRMKeyVault_complete(t *testing.T) {
resource.TestCheckResourceAttrSet(dataSourceName, "sku.0.name"),
resource.TestCheckResourceAttrSet(dataSourceName, "access_policy.0.tenant_id"),
resource.TestCheckResourceAttrSet(dataSourceName, "access_policy.0.object_id"),
resource.TestCheckResourceAttr(dataSourceName, "access_policy.0.key_permissions.0", "create"),
resource.TestCheckResourceAttr(dataSourceName, "access_policy.0.secret_permissions.0", "set"),
resource.TestCheckResourceAttr(dataSourceName, "access_policy.0.key_permissions.0", "get"),
resource.TestCheckResourceAttr(dataSourceName, "access_policy.0.secret_permissions.0", "get"),
resource.TestCheckResourceAttr(dataSourceName, "tags.%", "1"),
resource.TestCheckResourceAttr(dataSourceName, "tags.environment", "Production"),
),
Expand Down

0 comments on commit 29a4aee

Please sign in to comment.