Skip to content

Commit cb625d6

Browse files
committed
Use JUnit 5 annotation
1 parent 8cc436b commit cb625d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/polypheny/jdbc/ConnectionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
import java.sql.SQLFeatureNotSupportedException;
3030
import java.sql.Statement;
3131
import java.util.Properties;
32-
import jdk.nashorn.internal.ir.annotations.Ignore;
3332
import org.junit.jupiter.api.AfterEach;
3433
import org.junit.jupiter.api.BeforeEach;
34+
import org.junit.jupiter.api.Disabled;
3535
import org.junit.jupiter.api.Test;
3636

3737
public class ConnectionTest {
@@ -193,7 +193,7 @@ void testMetaDataGetProceduresNotStrict() throws SQLException {
193193

194194

195195
@Test
196-
@Ignore
196+
@Disabled
197197
// This test fails due to syntax definitions missing for some of the functions on the server side (operator registry).
198198
void testMetaDataGetFunctionsNotStrict() throws SQLException {
199199
try ( Connection con = DriverManager.getConnection( "jdbc:polypheny://127.0.0.1:20590?strict=false", "pa", "" ) ) {

0 commit comments

Comments
 (0)