Browse code

Windows: TestBuildWorkdirWindowsPath hard code fix

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2016/07/21 13:23:38
Showing 1 changed files
... ...
@@ -6393,7 +6393,7 @@ func (s *DockerSuite) TestBuildWorkdirWindowsPath(c *check.C) {
6393 6393
 	name := "testbuildworkdirwindowspath"
6394 6394
 
6395 6395
 	_, err := buildImage(name, `
6396
-	FROM windowsservercore
6396
+	FROM `+WindowsBaseImage+`
6397 6397
 	RUN mkdir C:\\work
6398 6398
 	WORKDIR C:\\work
6399 6399
 	RUN if "%CD%" NEQ "C:\work" exit -1