Fix typo to run tests grouped by RunUnprivileged

Signed-off-by: Antonio Murdaca <me@runcom.ninja>
Upstream-commit: a36f6a140bb7987c18a8177115cbc315672f9e53
Component: engine
This commit is contained in:
Antonio Murdaca
2015-05-13 14:24:54 +02:00
parent 5bef2d9b74
commit 0ea0631fe7
@@ -1000,7 +1000,7 @@ func (s *DockerSuite) TestRunPrivilegedCanMknod(c *check.C) {
}
}
func (s *DockerSuite) TestRunUnPrivilegedCanMknod(c *check.C) {
func (s *DockerSuite) TestRunUnprivilegedCanMknod(c *check.C) {
cmd := exec.Command(dockerBinary, "run", "busybox", "sh", "-c", "mknod /tmp/sda b 8 0 && echo ok")
out, _, err := runCommandWithOutput(cmd)
if err != nil {
@@ -1124,7 +1124,7 @@ func (s *DockerSuite) TestRunPrivilegedCanMount(c *check.C) {
}
}
func (s *DockerSuite) TestRunUnPrivilegedCannotMount(c *check.C) {
func (s *DockerSuite) TestRunUnprivilegedCannotMount(c *check.C) {
cmd := exec.Command(dockerBinary, "run", "busybox", "sh", "-c", "mount -t tmpfs none /tmp && echo ok")
out, _, err := runCommandWithOutput(cmd)
if err == nil {