Skip to content

Commit

Permalink
change the place of sort in testCorrection()
Browse files Browse the repository at this point in the history
  • Loading branch information
hao yan committed Sep 17, 2012
1 parent e8c872b commit b07e3f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/com/kamikaze/test/PForDeltaKamikazeTest.java
Expand Up @@ -50,12 +50,13 @@ public void testCorrectness() throws Exception{

int[] numArray = new int[set.size()];

//Arrays.sort(numArray);


int i = 0;
for (int n : set){
numArray[i++] = n;
}
Arrays.sort(numArray);

PForDeltaDocIdSet docset = new PForDeltaDocIdSet();

Expand Down

0 comments on commit b07e3f3

Please sign in to comment.