mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
provider/aws: fix ELB acc tests
* LB Name test could end up too long and fail * CheckDestroy was looking for the wrong error code
This commit is contained in:
parent
10cc513ae0
commit
bf40c48075
@ -54,7 +54,7 @@ func TestAccAWSELB_basic(t *testing.T) {
|
|||||||
func TestAccAWSELB_fullCharacterRange(t *testing.T) {
|
func TestAccAWSELB_fullCharacterRange(t *testing.T) {
|
||||||
var conf elb.LoadBalancerDescription
|
var conf elb.LoadBalancerDescription
|
||||||
|
|
||||||
lbName := fmt.Sprintf("FoobarTerraform-test123-%d",
|
lbName := fmt.Sprintf("Tf-%d",
|
||||||
rand.New(rand.NewSource(time.Now().UnixNano())).Int())
|
rand.New(rand.NewSource(time.Now().UnixNano())).Int())
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
@ -560,7 +560,7 @@ func testAccCheckAWSELBDestroy(s *terraform.State) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if providerErr.Code() != "InvalidLoadBalancerName.NotFound" {
|
if providerErr.Code() != "LoadBalancerNotFound" {
|
||||||
return fmt.Errorf("Unexpected error: %s", err)
|
return fmt.Errorf("Unexpected error: %s", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user