Skip to content

Commit

Permalink
Fix acceptance test
Browse files Browse the repository at this point in the history
  • Loading branch information
F21 committed May 29, 2024
1 parent b51212b commit 99fd1e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1042,13 +1042,13 @@ func TestAccCloudflareAccessApplication_AuthTypeForcesNewResource(t *testing.T)
{
Config: testAccCloudflareAccessApplicationConfigWithSAMLSaas(rnd, accountID),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(name, "saas_app.auth_type", "saml"),
resource.TestCheckResourceAttr(name, "saas_app.0.auth_type", "saml"),
),
},
{
Config: testAccCloudflareAccessApplicationConfigWithOIDCSaas(rnd, accountID),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(name, "saas_app.auth_type", "oidc"),
resource.TestCheckResourceAttr(name, "saas_app.0.auth_type", "oidc"),
),
},
},
Expand Down

0 comments on commit 99fd1e2

Please sign in to comment.