azure: go fmt

This commit is contained in:
Christopher Boumenot 2017-11-16 17:32:35 -08:00
parent ee767e55d1
commit 8985bd45ba
2 changed files with 2 additions and 3 deletions

View File

@ -913,7 +913,7 @@ func TestConfigShouldRejectTempAndBuildResourceGroupName(t *testing.T) {
"communicator": "none",
// custom may define one or the other, but not both
"temp_resource_group_name": "rgn00",
"temp_resource_group_name": "rgn00",
"build_resource_group_name": "rgn00",
}
@ -923,7 +923,6 @@ func TestConfigShouldRejectTempAndBuildResourceGroupName(t *testing.T) {
}
}
func getArmBuilderConfiguration() map[string]string {
m := make(map[string]string)
for _, v := range requiredConfigValues {

View File

@ -86,7 +86,7 @@ func (s *StepDeleteResourceGroup) deleteResourceGroup(state multistep.StateBag,
}
return err
} else {
s.say("\nThe resource group was created by Packer, deleting ...")
s.say("\nThe resource group was created by Packer, deleting ...")
_, errChan := s.client.GroupsClient.Delete(resourceGroupName, cancelCh)
err = <-errChan