Skip to content

Commit

Permalink
switch request from enabled false to enabled true
Browse files Browse the repository at this point in the history
  • Loading branch information
indeed-kelvin committed Jul 21, 2023
1 parent adab820 commit 11cb0be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion load_balancing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func TestCreateLoadBalancerPool_MinimumOriginsZero(t *testing.T) {
"description": "Primary data center - Provider XYZ",
"name": "primary-dc-2",
"minimum_origins": 0,
"enabled": false,
"enabled": true,
"check_regions": null,
"origins": null
}`, string(b))
Expand Down Expand Up @@ -238,6 +238,7 @@ func TestCreateLoadBalancerPool_MinimumOriginsZero(t *testing.T) {
request := LoadBalancerPool{
Description: "Primary data center - Provider XYZ",
Name: "primary-dc-2",
Enabled: true,
MinimumOrigins: IntPtr(0),
}

Expand Down

0 comments on commit 11cb0be

Please sign in to comment.