Merge pull request #9012 from alrs/provisioner-shell-err

provisioner/shell: fix dropped test error
This commit is contained in:
Wilken Rivera 2020-04-06 18:50:31 -04:00 committed by GitHub
commit 9d3aaa61fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ func (s *ShellProvisionerAccTest) GetConfig() (string, error) {
defer config.Close()
file, err := ioutil.ReadAll(config)
return string(file), nil
return string(file), err
}
func (s *ShellProvisionerAccTest) GetProvisionerStore() packer.MapOfProvisioner {