Fix health check integration test suite typo.

This commit is contained in:
Timo Reimann 2017-04-26 01:08:15 +02:00
parent 8fd6160758
commit 71a2c8bdcd

View file

@ -16,16 +16,16 @@ import (
checker "github.com/vdemeester/shakers" checker "github.com/vdemeester/shakers"
) )
// HealchCheck test suites (using libcompose) // HealthCheck test suites (using libcompose)
type HealchCheckSuite struct{ BaseSuite } type HealthCheckSuite struct{ BaseSuite }
func (s *HealchCheckSuite) SetUpSuite(c *check.C) { func (s *HealthCheckSuite) SetUpSuite(c *check.C) {
s.createComposeProject(c, "healthcheck") s.createComposeProject(c, "healthcheck")
s.composeProject.Start(c) s.composeProject.Start(c)
} }
func (s *HealchCheckSuite) TestSimpleConfiguration(c *check.C) { func (s *HealthCheckSuite) TestSimpleConfiguration(c *check.C) {
whoami1Host := s.composeProject.Container(c, "whoami1").NetworkSettings.IPAddress whoami1Host := s.composeProject.Container(c, "whoami1").NetworkSettings.IPAddress
whoami2Host := s.composeProject.Container(c, "whoami2").NetworkSettings.IPAddress whoami2Host := s.composeProject.Container(c, "whoami2").NetworkSettings.IPAddress