Skip to content

Commit

Permalink
test: 테스트 영역에서 도메인 영역의 repository를 사용하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ503 committed Oct 15, 2023
1 parent 43282d1 commit b648e08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.ddang.ddang.auction.domain.repository.AuctionRepository;
import com.ddang.ddang.bid.domain.Bid;
import com.ddang.ddang.bid.domain.BidPrice;
import com.ddang.ddang.bid.infrastructure.persistence.JpaBidRepository;
import com.ddang.ddang.bid.domain.repository.BidRepository;
import com.ddang.ddang.chat.domain.ChatRoom;
import com.ddang.ddang.chat.domain.Message;
import com.ddang.ddang.chat.domain.repository.ChatRoomRepository;
Expand Down Expand Up @@ -46,7 +46,7 @@ public class FcmNotificationServiceFixture {
private AuctionRepository auctionRepository;

@Autowired
private JpaBidRepository bidRepository;
private BidRepository bidRepository;

@Autowired
private JpaAuctionImageRepository auctionImageRepository;
Expand Down

0 comments on commit b648e08

Please sign in to comment.