Skip to content

Commit 0e9ca9a

Browse files
committed
chore(volunteer): 불필요한 import 제거
1 parent c2bfb02 commit 0e9ca9a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/java/com/somemore/volunteer/service/UpdateVolunteerLockServiceTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package com.somemore.volunteer.service;
22

33
import static org.assertj.core.api.Assertions.assertThat;
4-
import static org.assertj.core.api.Assertions.assertThatCode;
5-
import static org.assertj.core.api.Assertions.assertThatNoException;
64
import static org.assertj.core.api.Assertions.assertThatThrownBy;
75
import static org.mockito.ArgumentMatchers.any;
86
import static org.mockito.ArgumentMatchers.anyLong;
@@ -112,7 +110,7 @@ void UpdateVolunteerStatsWhenInterruptedException() throws InterruptedException
112110

113111
@DisplayName("존재하지 않는 봉사자의 봉사활동을 업데이트하려는 경우 예외가 발생한다.")
114112
@Test
115-
void UpdateVolunteerStatsWhenDoesNotExistsVolunteer() throws InterruptedException {
113+
void UpdateVolunteerStatsWhenDoesNotExistsVolunteer() {
116114
// given
117115
UUID wrongVolunteerId = UUID.randomUUID();
118116
int hours = 5;

0 commit comments

Comments
 (0)