From d3392a3bdecca4b79e1ea942595f05c03fcd5995 Mon Sep 17 00:00:00 2001 From: John Howard Date: Thu, 14 Jan 2016 11:56:59 -0800 Subject: [PATCH] Windows: Fix test regression from 19155 Signed-off-by: John Howard --- integration-cli/docker_cli_build_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-cli/docker_cli_build_test.go b/integration-cli/docker_cli_build_test.go index 92efc96a5c..b60b24dace 100644 --- a/integration-cli/docker_cli_build_test.go +++ b/integration-cli/docker_cli_build_test.go @@ -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)