Skip to content

Commit

Permalink
Merge pull request #33875 from tmp6154/master
Browse files Browse the repository at this point in the history
Change order of arguments in assertion to be more logical
  • Loading branch information
cpuguy83 committed Jun 30, 2017
2 parents 2b20737 + 07cc701 commit 87df0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-cli/docker_cli_daemon_test.go
Expand Up @@ -2828,7 +2828,7 @@ func (s *DockerDaemonSuite) TestExecWithUserAfterLiveRestore(c *check.C) {

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

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

0 comments on commit 87df0e5

Please sign in to comment.