rds: fix engine version

This commit is contained in:
Jack Pearkes 2014-07-22 23:13:49 -04:00
parent b6503a7810
commit 27fe1e0226
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@ func testAccCheckAWSDBInstanceAttributes(v *rds.DBInstance) resource.TestCheckFu
return fmt.Errorf("bad engine: %#v", v.Engine) return fmt.Errorf("bad engine: %#v", v.Engine)
} }
if v.Engine != "5.6.17" { if v.EngineVersion != "5.6.17" {
return fmt.Errorf("bad engine_version: %#v", v.Engine) return fmt.Errorf("bad engine_version: %#v", v.EngineVersion)
} }
return nil return nil