Backport of Re-order expected/actual for assertContainerState in consul container tests into release/1.16.x (#18158)
backport of commit d5bed27d980058151d884980ad70071c8f235f37 Co-authored-by: Ronald Ekambi <ronekambi@gmail.com>
This commit is contained in:
parent
788225832e
commit
bb0c534363
|
@ -53,7 +53,7 @@ QUIET=
|
|||
endif
|
||||
|
||||
ifeq ("$(GOTAGS)","")
|
||||
CONSUL_COMPAT_TEST_IMAGE=consul
|
||||
CONSUL_COMPAT_TEST_IMAGE=hashicorp/consul
|
||||
else
|
||||
CONSUL_COMPAT_TEST_IMAGE=hashicorp/consul-enterprise
|
||||
endif
|
||||
|
|
|
@ -252,5 +252,5 @@ func AssertFortioNameWithClient(t *testing.T, urlbase string, name string, reqHo
|
|||
func AssertContainerState(t *testing.T, service libservice.Service, state string) {
|
||||
containerStatus, err := service.GetStatus()
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, containerStatus, state, fmt.Sprintf("Expected: %s. Got %s", containerStatus, state))
|
||||
require.Equal(t, containerStatus, state, fmt.Sprintf("Expected: %s. Got %s", state, containerStatus))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue