Skip to content

Commit

Permalink
Remove use of JUnit 4 API
Browse files Browse the repository at this point in the history
  • Loading branch information
mxm committed Jan 27, 2025
1 parent 59dacfb commit e743c35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.apache.iceberg.io.FileAppender;
import org.apache.iceberg.orc.ORC;
import org.apache.iceberg.relocated.com.google.common.collect.Lists;
import org.junit.Ignore;
import org.junit.jupiter.api.Disabled;

public class TestFlinkOrcReaderWriter extends DataTest {
private static final int NUM_RECORDS = 100;
Expand Down Expand Up @@ -112,7 +112,7 @@ protected void writeAndValidate(Schema schema, List<Record> expectedRecords) thr
}

@Override
@Ignore("ORC file format supports null values even for required fields")
@Disabled("ORC file format supports null values even for required fields")
public void testWriteNullValueForRequiredType() {
super.testWriteNullValueForRequiredType();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.apache.iceberg.io.FileAppender;
import org.apache.iceberg.orc.ORC;
import org.apache.iceberg.relocated.com.google.common.collect.Lists;
import org.junit.Ignore;
import org.junit.jupiter.api.Disabled;

public class TestFlinkOrcReaderWriter extends DataTest {
private static final int NUM_RECORDS = 100;
Expand Down Expand Up @@ -112,7 +112,7 @@ protected void writeAndValidate(Schema schema, List<Record> expectedRecords) thr
}

@Override
@Ignore("ORC file format supports null values even for required fields")
@Disabled("ORC file format supports null values even for required fields")
public void testWriteNullValueForRequiredType() {
super.testWriteNullValueForRequiredType();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.apache.iceberg.io.FileAppender;
import org.apache.iceberg.orc.ORC;
import org.apache.iceberg.relocated.com.google.common.collect.Lists;
import org.junit.Ignore;
import org.junit.jupiter.api.Disabled;

public class TestFlinkOrcReaderWriter extends DataTest {
private static final int NUM_RECORDS = 100;
Expand Down Expand Up @@ -112,7 +112,7 @@ protected void writeAndValidate(Schema schema, List<Record> expectedRecords) thr
}

@Override
@Ignore("ORC file format supports null values even for required fields")
@Disabled("ORC file format supports null values even for required fields")
public void testWriteNullValueForRequiredType() {
super.testWriteNullValueForRequiredType();
}
Expand Down

0 comments on commit e743c35

Please sign in to comment.