mirror of
https://github.com/moby/moby.git
synced 2025-08-01 05:47:11 +03:00
Fix a typo in hostConfig.ShmSize validation
Other places referring to the same configuration, including docs, have the correct spelling. Signed-off-by: Rodolfo Carvalho <rhcarvalho@gmail.com>
This commit is contained in:
@ -1462,7 +1462,7 @@ func (s *DockerSuite) TestPostContainersCreateShmSizeNegative(c *check.C) {
|
||||
status, body, err := sockRequest("POST", "/containers/create", config)
|
||||
c.Assert(err, check.IsNil)
|
||||
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
||||
c.Assert(string(body), checker.Contains, "SHM size must be greater then 0")
|
||||
c.Assert(string(body), checker.Contains, "SHM size must be greater than 0")
|
||||
}
|
||||
|
||||
func (s *DockerSuite) TestPostContainersCreateShmSizeHostConfigOmitted(c *check.C) {
|
||||
|
Reference in New Issue
Block a user