Skip to content

Commit

Permalink
style: 잘못 입력된 패키지명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Srltas committed Sep 26, 2024
1 parent f056a2c commit 1af6da2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.mockito.junit.jupiter.MockitoExtension;

import com.srltas.runtogether.adapter.in.LocationNeighborhoodVerifyRequest;
import com.srltas.runtogether.adapter.in.UserNeighborhoodVerifyRequest;
import com.srltas.runtogether.application.mappper.LocationNeighborhoodVerifyRequestMapper;
import com.srltas.runtogether.application.mappper.UserNeighborhoodVerifyRequestMapper;
import com.srltas.runtogether.domain.exception.NeighborhoodNotFoundException;
Expand Down Expand Up @@ -47,13 +48,13 @@ class NeighborhoodVerificationServiceTest {
private NeighborhoodVerificationService neighborhoodVerificationService;

private String neighborhoodName;
private com.srltas.runtogether.adapter.in.UserNeighborhoodVerifyRequest userNeighborhoodVerifyRequest;
private UserNeighborhoodVerifyRequest userNeighborhoodVerifyRequest;
private LocationNeighborhoodVerifyRequest locationNeighborhoodVerifyRequest;

@BeforeEach
public void setUp() {
neighborhoodName = "Gangnam";
userNeighborhoodVerifyRequest = new com.srltas.runtogether.adapter.in.UserNeighborhoodVerifyRequest(1L, "testUser");
userNeighborhoodVerifyRequest = new UserNeighborhoodVerifyRequest(1L, "testUser");
locationNeighborhoodVerifyRequest = new LocationNeighborhoodVerifyRequest(1L, 1L);
}

Expand Down

0 comments on commit 1af6da2

Please sign in to comment.