It was s% instead of %s.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
| ... | ... |
@@ -58,7 +58,7 @@ func (s *DockerSuite) TestExecApiCreateContainerPaused(c *check.C) {
|
| 58 | 58 |
c.Assert(err, checker.IsNil) |
| 59 | 59 |
c.Assert(status, checker.Equals, http.StatusConflict) |
| 60 | 60 |
|
| 61 |
- comment := check.Commentf("Expected message when creating exec command with Container s% is paused", name)
|
|
| 61 |
+ comment := check.Commentf("Expected message when creating exec command with Container %s is paused", name)
|
|
| 62 | 62 |
c.Assert(string(body), checker.Contains, "Container "+name+" is paused, unpause the container before exec", comment) |
| 63 | 63 |
} |
| 64 | 64 |
|