You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by rb...@apache.org on 2014/08/19 08:46:33 UTC

git commit: TEZ-1456. Fix typo in TestIFile.testWithRLEMarker (Contributed by Alexander Pivovarov)

Repository: tez
Updated Branches:
  refs/heads/master b30e2bcf8 -> 34adfbb86


TEZ-1456. Fix typo in TestIFile.testWithRLEMarker (Contributed by Alexander Pivovarov)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/34adfbb8
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/34adfbb8
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/34adfbb8

Branch: refs/heads/master
Commit: 34adfbb867be77867fd48a1abc9ab2ff53a41867
Parents: b30e2bc
Author: Rajesh Balamohan <rb...@apache.org>
Authored: Tue Aug 19 12:16:20 2014 +0530
Committer: Rajesh Balamohan <rb...@apache.org>
Committed: Tue Aug 19 12:16:20 2014 +0530

----------------------------------------------------------------------
 .../apache/tez/runtime/library/common/sort/impl/TestIFile.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/34adfbb8/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/sort/impl/TestIFile.java
----------------------------------------------------------------------
diff --git a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/sort/impl/TestIFile.java b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/sort/impl/TestIFile.java
index 15ab532..df50bba 100644
--- a/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/sort/impl/TestIFile.java
+++ b/tez-runtime-library/src/test/java/org/apache/tez/runtime/library/common/sort/impl/TestIFile.java
@@ -176,8 +176,8 @@ public class TestIFile {
     testWithDataBuffer(sortedData);
 
     List<KVPair> unsortedData = KVDataGen.generateTestData(false, 1);
-    testWriterAndReader(sortedData);
-    testWithDataBuffer(sortedData);
+    testWriterAndReader(unsortedData);
+    testWithDataBuffer(unsortedData);
   }
 
   @Test