MAPREDUCE-6945. TestMapFileOutputFormat missing @after annotation. Contributed by Ajay Kumar

This commit is contained in:
Mingliang Liu 2017-08-27 15:19:55 -07:00
parent 077a5eed9f
commit ae7abad3d9
2 changed files with 6 additions and 2 deletions

View File

@ -24,6 +24,7 @@ import org.apache.hadoop.io.Text;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.io.WritableComparable;
import org.apache.hadoop.io.MapFile.Reader;
import org.junit.After;
import org.junit.Test;
import org.mockito.Mockito;
@ -40,9 +41,10 @@ public class TestMapFileOutputFormat {
assertTrue(!MyPartitioner.isGetPartitionCalled());
}
protected void tearDown() throws Exception {
@After
public void tearDown() throws Exception {
MyPartitioner.setGetPartitionCalled(false);
};
}
private static class MyPartitioner
implements
Partitioner<WritableComparable, Writable> {

View File

@ -25,6 +25,7 @@ import org.apache.hadoop.io.Writable;
import org.apache.hadoop.io.WritableComparable;
import org.apache.hadoop.io.MapFile.Reader;
import org.apache.hadoop.mapreduce.Partitioner;
import org.junit.After;
import org.junit.Test;
import org.mockito.Mockito;
@ -41,6 +42,7 @@ public class TestMapFileOutputFormat {
assertTrue(!MyPartitioner.isGetPartitionCalled());
}
@After
public void tearDown() throws Exception {
MyPartitioner.setGetPartitionCalled(false);
}