Windows: Fix test regression from 19155

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2016-01-14 11:56:59 -08:00
parent 3ce3fb7417
commit d3392a3bde
1 changed files with 2 additions and 2 deletions

View File

@ -6170,8 +6170,8 @@ func (s *DockerSuite) TestBuildBuildTimeArgExpansion(c *check.C) {
if err != nil {
c.Fatal(err)
}
if res != filepath.Clean(wdVal) {
c.Fatalf("Config.WorkingDir value mismatch. Expected: %s, got: %s", filepath.Clean(wdVal), res)
if res != filepath.ToSlash(filepath.Clean(wdVal)) {
c.Fatalf("Config.WorkingDir value mismatch. Expected: %s, got: %s", filepath.ToSlash(filepath.Clean(wdVal)), res)
}
err = inspectFieldAndMarshall(imgName, "Config.Env", &resArr)