Merge pull request #16945 from estesp/ocd-on-nonmatching-func-names

Correct mismatched function names (UID() and Gid())
This commit is contained in:
Alexander Morozov
2015-10-12 09:15:51 -07:00
5 changed files with 6 additions and 6 deletions
@@ -80,5 +80,5 @@ func (s *DockerDaemonSuite) TestDaemonUserNamespaceRootSetting(c *check.C) {
c.Fatal(err)
}
c.Assert(stat.UID(), check.Equals, uint32(uid), check.Commentf("Touched file not owned by remapped root UID"))
c.Assert(stat.Gid(), check.Equals, uint32(gid), check.Commentf("Touched file not owned by remapped root GID"))
c.Assert(stat.GID(), check.Equals, uint32(gid), check.Commentf("Touched file not owned by remapped root GID"))
}