Merge pull request #6403 from Ticketmaster/BROKEN_MASTER

Fixing the broken Test with Master branch
This commit is contained in:
James Nugent 2016-04-29 17:36:07 -05:00
commit aba5049bcd
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ func testAccCheckBeanstalkEnvConfigValue(n string, expectedValue string) resourc
for _, value := range resp.Options[0].ValueOptions {
if *value != expectedValue {
return fmt.Errorf("Option setting value: %s. Expected %s", value, expectedValue)
return fmt.Errorf("Option setting value: %s. Expected %s", *value, expectedValue)
}
}