Skip to content

Commit

Permalink
fix: Remove JUnit 5 annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
manticore-projects committed Apr 25, 2023
1 parent 3d58339 commit 93c6094
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions h2/src/test/org/h2/test/db/TestCsv.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import org.h2.tools.Csv;
import org.h2.util.IOUtils;
import org.h2.util.StringUtils;
import org.junit.jupiter.api.Test;

/**
* CSVREAD and CSVWRITE tests.
Expand Down Expand Up @@ -594,7 +593,7 @@ private void testWriteRead() throws SQLException {
*
* @throws java.lang.Exception
*/
@Test public void testReadEmptyNumbers1() throws Exception {
public void testReadEmptyNumbers1() throws Exception {
String fileName = getBaseDir() + "/test.csv";
FileUtils.delete(fileName);
OutputStream out = FileUtils.newOutputStream(fileName, false);
Expand All @@ -621,7 +620,7 @@ private void testWriteRead() throws SQLException {
*
* @throws java.lang.Exception
*/
@Test public void testReadEmptyNumbers2() throws Exception {
public void testReadEmptyNumbers2() throws Exception {
String fileName = getBaseDir() + "/test.csv";
FileUtils.delete(fileName);
OutputStream out = FileUtils.newOutputStream(fileName, false);
Expand Down

0 comments on commit 93c6094

Please sign in to comment.