From a4ffaa3348409b5b443162d73750c2841875548e Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Thu, 17 Aug 2023 15:14:00 -0700 Subject: [PATCH] awscommons/v2: fix dropped test error --- awscommons/v2/autoscaling_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/awscommons/v2/autoscaling_test.go b/awscommons/v2/autoscaling_test.go index 3588cd3..b52180f 100644 --- a/awscommons/v2/autoscaling_test.go +++ b/awscommons/v2/autoscaling_test.go @@ -59,6 +59,7 @@ func TestSetAsgCapacityDeploysNewInstances(t *testing.T) { require.NoError(t, waitForCapacity(opts, name, 40, 15*time.Second)) asg, err = GetAsgByName(opts, name) + require.NoError(t, err) allInstances := asg.Instances require.Equal(t, len(allInstances), len(existingInstances)+1)