provider/aws: Fix pointer fmt as string

Fixes #8839.
This commit is contained in:
James Nugent 2016-09-14 20:14:41 +01:00
parent a07270b605
commit a65b0cce7c
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ func testAccAWSEFSMountTargetDisappears(mount *efs.MountTargetDescription) resou
return nil return nil
} }
return resource.RetryableError(fmt.Errorf( return resource.RetryableError(fmt.Errorf(
"Waiting for EFS mount target: %s", mount.MountTargetId)) "Waiting for EFS mount target: %s", *mount.MountTargetId))
}) })
} }