Skip to content

Commit

Permalink
Fixing an invalid cast
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Jan 22, 2018
1 parent 25ca4ac commit 7535c67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func testCheckAzureRMLoadBalancerBackEndAddressPoolNotExists(addressPoolName str
func testCheckAzureRMLoadBalancerBackEndAddressPoolDisappears(addressPoolName string, lb *network.LoadBalancer) resource.TestCheckFunc {
return func(s *terraform.State) error {
client := testAccProvider.Meta().(*ArmClient).loadBalancerClient
ctx := testAccProvider.Meta().(ArmClient).StopContext
ctx := testAccProvider.Meta().(*ArmClient).StopContext

_, i, exists := findLoadBalancerBackEndAddressPoolByName(lb, addressPoolName)
if !exists {
Expand Down

0 comments on commit 7535c67

Please sign in to comment.