Skip to content

Commit

Permalink
dump stdout to help diagnose flaky test
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
  • Loading branch information
ndeloof committed Dec 20, 2022
1 parent bab3050 commit dacf243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/e2e/logs_test.go
Expand Up @@ -68,7 +68,7 @@ func TestLocalComposeLogsFollow(t *testing.T) {

t.Run("logs", func(t *testing.T) {
res := c.RunDockerComposeCmd(t, "--project-name", projectName, "logs", "--follow")
assert.Check(t, strings.Count(res.Combined(), "PING localhost (127.0.0.1)") == 2)
assert.Check(t, strings.Count(res.Combined(), "PING localhost (127.0.0.1)") == 2, res.Combined())
})

t.Run("down", func(t *testing.T) {
Expand Down

0 comments on commit dacf243

Please sign in to comment.