mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 00:16:18 -06:00
Fix format string making vet fail
This commit is contained in:
parent
bf83d2d924
commit
a285ae1e2c
@ -229,7 +229,7 @@ func testAccCheckAWSDBInstanceSnapshot(s *terraform.State) error {
|
||||
ResourceName: aws.String(tagsARN),
|
||||
})
|
||||
if err != nil {
|
||||
return fmt.Errorf("Error retrieving tags for ARN (%s): ", tagsARN, err)
|
||||
return fmt.Errorf("Error retrieving tags for ARN (%s): %s", tagsARN, err)
|
||||
}
|
||||
|
||||
if resp.TagList == nil || len(resp.TagList) == 0 {
|
||||
|
Loading…
Reference in New Issue
Block a user