Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
teowa committed Jul 24, 2024
1 parent 51d8057 commit cf214a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func TestAccArcKubernetesCluster_basic(t *testing.T) {
Config: r.update(data, credential, privateKey, publicKey),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).ExistsInAzure(r),
check.That(data.ResourceName).Key("distribution").HasValue("kind"),
check.That(data.ResourceName).Key("distribution").HasValue("generic"),
check.That(data.ResourceName).Key("infrastructure").HasValue("generic"),
),
},
Expand Down Expand Up @@ -85,7 +85,7 @@ func TestAccArcKubernetesCluster_complete(t *testing.T) {
Config: r.update(data, credential, privateKey, publicKey),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).ExistsInAzure(r),
check.That(data.ResourceName).Key("distribution").HasValue("kind"),
check.That(data.ResourceName).Key("distribution").HasValue("generic"),
check.That(data.ResourceName).Key("infrastructure").HasValue("generic"),
),
},
Expand Down

0 comments on commit cf214a8

Please sign in to comment.