Skip to content

Commit

Permalink
Moving check from Basic to Complete.
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrenSoft committed Nov 7, 2024
1 parent 7f1c47b commit 3059663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/network/bastion_host_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ func TestAccBastionHost_basic(t *testing.T) {
Config: r.basic(data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).ExistsInAzure(r),
check.That(data.ResourceName).Key("zones.#").HasValue("3"),
),
},
})
Expand Down Expand Up @@ -58,6 +57,7 @@ func TestAccBastionHost_complete(t *testing.T) {
check.That(data.ResourceName).ExistsInAzure(r),
check.That(data.ResourceName).Key("tags.%").HasValue("1"),
check.That(data.ResourceName).Key("tags.environment").HasValue("production"),
check.That(data.ResourceName).Key("zones.#").HasValue("3"),
),
},
data.ImportStep(),
Expand Down

0 comments on commit 3059663

Please sign in to comment.