Skip to content

Commit

Permalink
Fix variable name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuh-indeed committed Nov 15, 2023
1 parent ebb6568 commit 665b54b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions load_balancing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func TestCreateLoadBalancerPool(t *testing.T) {
Header: map[string][]string{
"Host": {"example.com"},
},
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "someone@example.com",
Expand Down Expand Up @@ -172,7 +172,7 @@ func TestCreateLoadBalancerPool(t *testing.T) {
Header: map[string][]string{
"Host": {"example.com"},
},
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "someone@example.com",
Expand Down Expand Up @@ -327,7 +327,7 @@ func TestListLoadBalancerPools(t *testing.T) {
Address: "198.51.100.1",
Enabled: true,
Weight: 1,
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "someone@example.com",
Expand Down Expand Up @@ -406,7 +406,7 @@ func TestGetLoadBalancerPool(t *testing.T) {
Address: "198.51.100.1",
Enabled: true,
Weight: 1,
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "someone@example.com",
Expand Down Expand Up @@ -559,7 +559,7 @@ func TestUpdateLoadBalancerPool(t *testing.T) {
Header: map[string][]string{
"Host": {"example.com"},
},
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "nobody@example.com",
Expand All @@ -584,7 +584,7 @@ func TestUpdateLoadBalancerPool(t *testing.T) {
Header: map[string][]string{
"Host": {"example.com"},
},
VirtualNetworkId: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
VirtualNetworkID: "a5624d4e-044a-4ff0-b3e1-e2465353d4b4",
},
},
NotificationEmail: "nobody@example.com",
Expand Down

0 comments on commit 665b54b

Please sign in to comment.