Skip to content

Commit

Permalink
Fix codesmell.
Browse files Browse the repository at this point in the history
Signed-off-by: parvy <pierre.arvy@artelys.com>
  • Loading branch information
p-arvy committed Nov 10, 2023
1 parent 34fbc8e commit d440d7a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void testObjectiveIntegrityChecks() {
}

@Test
public void testMinMaxVoltageLimitIntegrityChecks() {
void testMinMaxVoltageLimitIntegrityChecks() {
OpenReacParameters parameters = new OpenReacParameters();
assertNull(parameters.getMinVoltageLimitConsistency());
assertNull(parameters.getMaxVoltageLimitConsistency());
Expand All @@ -61,6 +61,8 @@ public void testMinMaxVoltageLimitIntegrityChecks() {
assertFalse(parameters.checkAlgorithmParametersIntegrity());
parameters.setMaxVoltageLimitConsistency(1.2);
assertTrue(parameters.checkAlgorithmParametersIntegrity());

parameters.
}

@Test
Expand Down

0 comments on commit d440d7a

Please sign in to comment.