Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 87df0e5

Browse files
authored
Merge pull request #33875 from tmp6154/master
Change order of arguments in assertion to be more logical
2 parents 2b20737 + 07cc701 commit 87df0e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integration-cli/docker_cli_daemon_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2828,7 +2828,7 @@ func (s *DockerDaemonSuite) TestExecWithUserAfterLiveRestore(c *check.C) {
28282828

28292829
out2, err := s.d.Cmd("exec", "-u", "test", "top", "id")
28302830
c.Assert(err, check.IsNil, check.Commentf("Output: %s", out2))
2831-
c.Assert(out1, check.Equals, out2, check.Commentf("Output: before restart '%s', after restart '%s'", out1, out2))
2831+
c.Assert(out2, check.Equals, out1, check.Commentf("Output: before restart '%s', after restart '%s'", out1, out2))
28322832

28332833
out, err = s.d.Cmd("stop", "top")
28342834
c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))

0 commit comments

Comments
 (0)