HADOOP-9405. TestGridmixSummary#testExecutionSummarizer is broken. (Andrew Wang via atm)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1461205 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4bc46b766d
commit
603eff7e8b
|
@ -85,6 +85,9 @@ Release 2.0.5-beta - UNRELEASED
|
|||
HADOOP-9407. commons-daemon 1.0.3 dependency has bad group id causing
|
||||
build issues. (Sangjin Lee via suresh)
|
||||
|
||||
HADOOP-9405. TestGridmixSummary#testExecutionSummarizer is broken. (Andrew
|
||||
Wang via atm)
|
||||
|
||||
Release 2.0.4-alpha - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -247,7 +247,7 @@ public class TestGridmixSummary {
|
|||
qPath.toString(), es.getInputTraceLocation());
|
||||
// test expected data size
|
||||
assertEquals("Mismatch in expected data size",
|
||||
"1.0k", es.getExpectedDataSize());
|
||||
"1 K", es.getExpectedDataSize());
|
||||
// test input data statistics
|
||||
assertEquals("Mismatch in input data statistics",
|
||||
ExecutionSummarizer.stringifyDataStatistics(dataStats),
|
||||
|
@ -262,7 +262,7 @@ public class TestGridmixSummary {
|
|||
es.finalize(factory, testTraceFile.toString(), 1024*1024*1024*10L, resolver,
|
||||
dataStats, conf);
|
||||
assertEquals("Mismatch in expected data size",
|
||||
"10.0g", es.getExpectedDataSize());
|
||||
"10 G", es.getExpectedDataSize());
|
||||
|
||||
// test trace signature uniqueness
|
||||
// touch the trace file
|
||||
|
|
Loading…
Reference in New Issue