Skip to content

Commit

Permalink
fix: test compilation problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Dec 4, 2023
1 parent 687d182 commit 2722fe0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ public void testConnection()
assertNotNull(c);
}

protected static void buildPropertiesWithoutScalability(String repertoire) throws SQLException
public static void buildPropertiesWithoutScalability(String repertoire) throws SQLException
{
buildProperties(repertoire, new Connection[] {c});
}


protected static void buildPropertiesWithScalability(String repertoire) throws SQLException
public static void buildPropertiesWithScalability(String repertoire) throws SQLException
{
e = new TestDatabase().testConnection;
buildProperties(repertoire, new Connection[] {c, e});
}

protected static void buildProperties(String repertoire, Connection[] connections) throws SQLException
private static void buildProperties(String repertoire, Connection[] connections) throws SQLException
{
PropertiesHandler testProperties=PropertiesHandler.getInstance();

Expand Down

0 comments on commit 2722fe0

Please sign in to comment.