Skip to content

Commit

Permalink
style: code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yumyeonghan committed Oct 23, 2023
1 parent 8e0f5ad commit f141049
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.documentationConfiguration;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;

import coffeemeet.server.auth.RefreshTokenRepository;
import coffeemeet.server.auth.utils.JwtTokenProvider;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.BeforeEach;
Expand All @@ -27,6 +28,9 @@ public abstract class ControllerTestConfig {
@MockBean
protected JwtTokenProvider jwtTokenProvider;

@MockBean
protected RefreshTokenRepository refreshTokenRepository;

@BeforeEach
void setUp(WebApplicationContext ctx, RestDocumentationContextProvider restDocumentation) {
mockMvc = MockMvcBuilders.webAppContextSetup(ctx)
Expand Down

0 comments on commit f141049

Please sign in to comment.