Skip to content

Commit

Permalink
remove static modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
rene-ye committed Jan 31, 2020
1 parent 043f07b commit e7988cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ enum ColumnType {
* @throws Exception
*/
@BeforeAll
public static void setupAE() throws Exception {
public void setupAE() throws Exception {
// skip CI unix tests with localhost servers
if (!connectionString.substring(Constants.JDBC_PREFIX.length()).split(Constants.SEMI_COLON)[0]
.contains("localhost") && null != enclaveServer) {
Expand Down Expand Up @@ -221,7 +221,7 @@ public static void setupAE() throws Exception {
*
* @throws SQLException
*/
public static void dropAll() throws Exception {
public void dropAll() throws Exception {
try (Statement stmt = connection.createStatement()) {
dropTables(stmt);

Expand All @@ -247,7 +247,7 @@ public static void dropAll() throws Exception {
* @throws SQLException
*/
@AfterAll
public static void cleanUp() throws Exception {
public void cleanUp() throws Exception {
dropAll();
if (null != connection) {
connection.close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public CallableStatementTest(String serverName, String url, String protocol) thr
* @throws SQLException
*/
@BeforeAll
public static void initCallableStatementTest() throws Exception {
public void initCallableStatementTest() throws Exception {
dropTables();

numericValues = createNumericValues(nullable);
Expand All @@ -133,7 +133,7 @@ public static void initCallableStatementTest() throws Exception {
}

@AfterAll
public static void dropAll() throws Exception {
public void dropAll() throws Exception {
dropTables();
dropProcedures();
}
Expand Down

0 comments on commit e7988cc

Please sign in to comment.