fix nit-pick from go vet

This commit is contained in:
Clint Shryock 2015-03-10 16:57:43 -05:00
parent 3c3b7d51a2
commit 314453abe5
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func testAccCheckRouteTableAssociationDestroy(s *terraform.State) error {
rt := resp.RouteTables[0]
if len(rt.Associations) > 0 {
return fmt.Errorf(
"route table %s has associations", rt.RouteTableID)
"route table %s has associations", *rt.RouteTableID)
}
}