Fixing the broken test

This commit is contained in:
Andy Chan 2016-04-28 12:43:51 -07:00
parent 5b7f12ecd7
commit cd69404fbc
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)
}
}