Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-WorkGH committed Oct 23, 2024
1 parent b9c320f commit dd69145
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
class StudyServiceTest {
private static final Logger LOGGER = LoggerFactory.getLogger(StudyServiceTest.class);

WireMockServer wireMockServer;
private WireMockServer wireMockServer;

WireMockUtils wireMockUtils;
private WireMockUtils wireMockUtils;

@Autowired
private MockMvc mockMvc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
package org.gridsuite.study.server.service.client;

import com.github.tomakehurst.wiremock.WireMockServer;
import lombok.AccessLevel;
import lombok.Getter;
import org.gridsuite.study.server.StudyApplication;
import org.junit.jupiter.api.AfterEach;
import org.slf4j.Logger;
Expand All @@ -26,8 +24,9 @@
@SpringBootTest
@ContextHierarchy({@ContextConfiguration(classes = {StudyApplication.class, TestChannelBinderConfiguration.class})})
public abstract class AbstractWireMockRestClientTest {
@Getter(AccessLevel.PROTECTED)
private final Logger logger = LoggerFactory.getLogger(this.getClass());
protected final Logger getLogger() {
return LoggerFactory.getLogger(this.getClass());
}

protected WireMockServer wireMockServer;

Expand Down

0 comments on commit dd69145

Please sign in to comment.