From 93c6094f267691a91f57fc9817cfab0752af3496 Mon Sep 17 00:00:00 2001 From: Andreas Reichel Date: Tue, 25 Apr 2023 18:04:26 +0700 Subject: [PATCH] fix: Remove JUnit 5 annotations --- h2/src/test/org/h2/test/db/TestCsv.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/h2/src/test/org/h2/test/db/TestCsv.java b/h2/src/test/org/h2/test/db/TestCsv.java index 5be3c16f8d..d13cb01f2b 100644 --- a/h2/src/test/org/h2/test/db/TestCsv.java +++ b/h2/src/test/org/h2/test/db/TestCsv.java @@ -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. @@ -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); @@ -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);