Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmiskiewicz committed Jul 16, 2024
1 parent 913f22a commit a7ec8ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/provider/azure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestAzureDefaults(t *testing.T) {
func TestAzureSpecific(t *testing.T) {

// given
aws := AzureInputProvider{
azure := AzureInputProvider{
MultiZone: true,
ProvisioningParameters: internal.ProvisioningParameters{
Parameters: internal.ProvisioningParametersDTO{
Expand All @@ -50,7 +50,7 @@ func TestAzureSpecific(t *testing.T) {
}

// when
values := aws.Provide()
values := azure.Provide()

// then

Expand All @@ -59,9 +59,9 @@ func TestAzureSpecific(t *testing.T) {
DefaultAutoScalerMax: 20,
DefaultAutoScalerMin: 3,
ZonesCount: 3,
Zones: []string{"1,2,3"},
Zones: []string{"1", "2", "3"},
ProviderType: "azure",
DefaultMachineType: "Standard_D48_v3",
DefaultMachineType: "Standard_D2s_v5",
Region: "uksouth",
Purpose: "production",
}, values)
Expand Down

0 comments on commit a7ec8ac

Please sign in to comment.