Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
Signed-off-by: BOUHOURS Antoine <[email protected]>
  • Loading branch information
antoinebhs committed Dec 15, 2023
1 parent a6d755f commit c900313
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ public abstract class AbstractByFilterDeletionTest extends AbstractNetworkModifi
protected static final UUID FILTER_ID_1 = UUID.randomUUID();
protected static final UUID FILTER_ID_2 = UUID.randomUUID();
private static final String EQUIPMENT_WRONG_ID_1 = "wrongId1";

protected abstract IdentifiableType getIdentifiableType();

protected abstract String getEquipmentNotFoundMessage();

protected abstract List<FilterEquipments> getTestFilters();

public static final String PATH = "/v1/filters/export";

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class EquipmentByFilterDeletionTest extends AbstractByFilterDeletionTest

private static final String LOAD_ID_4 = "load4";


@Before
public void specificSetUp() {
FilterService.setFilterServerBaseUri(wireMockServer.baseUrl());
Expand Down Expand Up @@ -68,7 +67,7 @@ protected IdentifiableType getIdentifiableType() {

@Override
protected String getEquipmentNotFoundMessage() {
return "Load not found";
return "Connectable not found";
}

@Override
Expand Down

0 comments on commit c900313

Please sign in to comment.