Skip to content

Commit

Permalink
Merge pull request containerd#5775 from kzys/pid-order
Browse files Browse the repository at this point in the history
integration: log all processes to investigate the test failure
  • Loading branch information
mxpv authored Jul 23, 2021
2 parents a963242 + 00d52bb commit c3f1f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/client/container_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ func TestContainerPids(t *testing.T) {
if len(processes) > 0 {
actual := processes[0].Pid
if pid != actual {
t.Errorf("expected pid %d but received %d", pid, actual)
t.Errorf("expected pid %d but received %d. processes = %+v", pid, actual, processes)
}
}
}
Expand Down

0 comments on commit c3f1f0e

Please sign in to comment.