YARN-2194. Addendum patch to fix failing unit test in TestPrivilegedOperationExecutor. Contributed by Sidharta Seethana.

This commit is contained in:
Varun Vasudev 2015-07-09 11:49:28 +05:30
parent 6b7692c468
commit 63d0365088
1 changed files with 4 additions and 2 deletions

View File

@ -217,8 +217,10 @@ public void testSquashCGroupOperationsWithValidOperations() {
.squashCGroupOperations(ops); .squashCGroupOperations(ops);
String expected = new StringBuffer String expected = new StringBuffer
(PrivilegedOperation.CGROUP_ARG_PREFIX) (PrivilegedOperation.CGROUP_ARG_PREFIX)
.append(cGroupTasks1).append(',') .append(cGroupTasks1).append(PrivilegedOperation
.append(cGroupTasks2).append(',') .LINUX_FILE_PATH_SEPARATOR)
.append(cGroupTasks2).append(PrivilegedOperation
.LINUX_FILE_PATH_SEPARATOR)
.append(cGroupTasks3).toString(); .append(cGroupTasks3).toString();
//We expect axactly one argument //We expect axactly one argument