Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
duedares-rvj committed Jan 15, 2025
1 parent d9b4212 commit 922c35c
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions internal/auth0/client/data_source_clients_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,6 @@ resource "auth0_client" "my_client_2" {
}
`

//
// Const testAccDataClientsWithNameFilter = `
// data "auth0_clients" "test" {
// depends_on = [
// auth0_client.my_client_1,
// auth0_client.my_client_2
// ]
// name_filter = "{{.testName}} - 1"
//}
//`.

const testAccDataClientsWithAppTypeFilter = `
data "auth0_clients" "test" {
depends_on = [
Expand Down Expand Up @@ -76,15 +65,6 @@ func TestAccDataClients(t *testing.T) {
`expected app_types\.0 to be one of \["native" "spa" "regular_web" "non_interactive" "rms" "box" "cloudbees" "concur" "dropbox" "mscrm" "echosign" "egnyte" "newrelic" "office365" "salesforce" "sentry" "sharepoint" "slack" "springcm" "sso_integration" "zendesk" "zoom"\], got invalid`,
),
},
// {
// Config: acctest.ParseTestName(testAccGivenSomeClients+testAccDataClientsWithNameFilter, t.Name()),
// Check: resource.ComposeTestCheckFunc(
// resource.TestCheckResourceAttr("data.auth0_clients.test", "clients.#", "1"),
// resource.TestCheckResourceAttr("data.auth0_clients.test", "clients.0.name", fmt.Sprintf("Acceptance Test %v - 1", t.Name())),
// resource.TestCheckResourceAttr("data.auth0_clients.test", "clients.0.app_type", "non_interactive"),
// resource.TestCheckResourceAttr("data.auth0_clients.test", "clients.0.is_first_party", "true"),
// resource.TestCheckResourceAttr("data.auth0_clients.test", "clients.0.description", fmt.Sprintf("Description for client 1 %s", t.Name()))),
// },.
{
Config: acctest.ParseTestName(testAccGivenSomeClients+testAccDataClientsWithAppTypeFilter, t.Name()),
Check: resource.ComposeTestCheckFunc(
Expand Down

0 comments on commit 922c35c

Please sign in to comment.