mirror of https://github.com/docker/compose.git
replace check with Equal in e2e test
Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
parent
b155fe0f2e
commit
3ed90ea467
|
@ -105,7 +105,7 @@ func TestCompose(t *testing.T) {
|
|||
assert.Equal(t, 2, len(lines))
|
||||
fields := strings.Fields(lines[1])
|
||||
assert.Equal(t, 2, len(fields))
|
||||
assert.Check(t, strings.Contains(fields[0], stack))
|
||||
assert.Equal(t, fields[0], stack)
|
||||
assert.Equal(t, "Running", fields[1])
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue