mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
TestDaemonEvents: use is.Contains() for easier debugging
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
0e0ab58a96
commit
8a3e8ac017
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import (
|
|||
"github.com/docker/docker/integration-cli/cli/build"
|
||||
"golang.org/x/sys/unix"
|
||||
"gotest.tools/assert"
|
||||
is "gotest.tools/assert/cmp"
|
||||
)
|
||||
|
||||
// #5979
|
||||
|
@ -434,7 +435,7 @@ func (s *DockerDaemonSuite) TestDaemonEvents(c *testing.T) {
|
|||
}
|
||||
|
||||
for _, s := range expectedSubstrings {
|
||||
assert.Check(c, strings.Contains(out, s))
|
||||
assert.Check(c, is.Contains(out, s))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue