MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1189818 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vinod Kumar Vavilapalli 2011-10-27 15:55:41 +00:00
parent f114dad5ef
commit 1b8511ef89
2 changed files with 3 additions and 1 deletions

View File

@ -1811,6 +1811,8 @@ Release 0.23.0 - Unreleased
containers (process-trees) irrespective of whether the container succeeded,
or killed. (Hitesh Shah via vinodkv)
MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)
Release 0.22.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -117,7 +117,7 @@ public class TestLinuxContainerExecutorWithMocks {
appSubmitter, appId, workDir);
assertEquals(0, ret);
assertEquals(Arrays.asList(appSubmitter, cmd, appId, containerId,
workDir.toString(), "/bin/echo", "/dev/null", pidFile),
workDir.toString(), "/bin/echo", "/dev/null", pidFile.toString()),
readMockParams());
}