Fix health check integration test suite typo.
This commit is contained in:
parent
8fd6160758
commit
71a2c8bdcd
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue