Skip to content

Commit

Permalink
test: 전역 변수에 대한 접근제어자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ503 committed Dec 24, 2023
1 parent 3fe3be0 commit 39f0361
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@
class FriendControllerTest extends FriendControllerTestFixture {

@Autowired
MockMvc mockMvc;
private MockMvc mockMvc;

@MockBean
FriendService friendService;
private FriendService friendService;

@MockBean
UserRepository userRepository;
private UserRepository userRepository;

@MockBean
TokenProvider tokenProvider;
private TokenProvider tokenProvider;

@Autowired
RestDocumentationResultHandler restDocs;
private RestDocumentationResultHandler restDocs;

@Test
void 친구_요청한다() throws Exception {
Expand Down

0 comments on commit 39f0361

Please sign in to comment.