Skip to content

Commit

Permalink
Repeat Firebird ITs to stabilize results
Browse files Browse the repository at this point in the history
  • Loading branch information
ron190 committed Jul 5, 2024
1 parent 319f7f7 commit 03ba963
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.jsql.view.terminal.SystemOutTerminal;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junitpioneer.jupiter.RetryingTest;
import org.junit.jupiter.api.RepeatedTest;

public class FirebirdNormalGetSuiteIT extends ConcreteFirebirdSuiteIT {

Expand All @@ -32,25 +32,25 @@ public void setupInjection() throws Exception {
}

@Override
@RetryingTest(3)
@RepeatedTest(3)
public void listDatabases() throws JSqlException {
super.listDatabases();
}

@Override
@RetryingTest(3)
@RepeatedTest(3)
public void listTables() throws JSqlException {
super.listTables();
}

@Override
@RetryingTest(3)
@RepeatedTest(3)
public void listColumns() throws JSqlException {
super.listColumns();
}

@Override
@RetryingTest(3)
@RepeatedTest(3)
public void listValues() throws JSqlException {
super.listValues();
}
Expand Down

0 comments on commit 03ba963

Please sign in to comment.