Skip to content

Commit

Permalink
DONTMERGE testing
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Nov 18, 2020
1 parent 32a7447 commit 7b0c11a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions internal/acceptance/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ var SupportedProviders map[string]terraform.ResourceProvider

func PreCheck(t *testing.T) {
variables := []string{
"ARM_CLIENT_ID",
"ARM_CLIENT_SECRET",
"ARM_TENANT_ID",
//"ARM_CLIENT_ID",
//"ARM_CLIENT_SECRET",
//"ARM_TENANT_ID",
"ARM_TEST_LOCATION",
"ARM_TEST_LOCATION_ALT",
}
Expand Down
6 changes: 5 additions & 1 deletion internal/services/aadgraph/application_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestAccApplication_basic(t *testing.T) {
resource.TestCheckResourceAttrSet(data.ResourceName, "object_id"),
),
},
data.ImportStep(),
//data.ImportStep(),
},
})
}
Expand Down Expand Up @@ -570,6 +570,10 @@ func testCheckApplicationDestroy(s *terraform.State) error {

func testAccApplication_basic(ri int) string {
return fmt.Sprintf(`
provider "azuread" {
tenant_id = "26e25406-6564-4a26-98ee-c71ba03235ad"
}
resource "azuread_application" "test" {
name = "acctest-APP-%[1]d"
}
Expand Down

0 comments on commit 7b0c11a

Please sign in to comment.