Skip to content

Commit

Permalink
Merge pull request #5715 from uber/b-google_compute_instance_group-error
Browse files Browse the repository at this point in the history
Fix error message arguments in google_compute_instance_group
  • Loading branch information
lwander committed Mar 18, 2016
2 parents 753e7a2 + 86bf978 commit 85bd151
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func resourceComputeInstanceGroupUpdate(d *schema.ResourceData, meta interface{}
return fmt.Errorf("Error invalid instance URLs: %v", from)
}
if !validInstanceURLs(to) {
return fmt.Errorf("Error invalid instance URLs: %v", from)
return fmt.Errorf("Error invalid instance URLs: %v", to)
}

add, remove := calcAddRemove(from, to)
Expand Down

0 comments on commit 85bd151

Please sign in to comment.