Browse code

Fix format string in TestExecApiCreateContainerPaused

It was s% instead of %s.

Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>

Aaron Lehmann authored on 2016/02/18 04:05:51
Showing 1 changed files
... ...
@@ -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