Skip to content

Commit

Permalink
fix : 초기 데이터 세팅 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
veronees committed Nov 11, 2024
1 parent 0f43007 commit 61077c4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ public void run(String... args) throws Exception {
Auction auction1 = Auction.builder()
.startPrice(10000L)
.startTime(LocalDateTime.of(2024, 10, 10, 12, 30, 30))
.endTime(LocalDateTime.of(2024, 10, 11, 12, 30, 30))
.auctionStatus(AuctionStatus.UPCOMING)
.endTime(LocalDateTime.of(2024, 12, 15, 12, 30, 30))
.auctionStatus(AuctionStatus.ONGOING)
.auctionCategory(AuctionCategory.BAGS)
.seller(member1)
.numOfBidders(5L)
.build();

Auction auction2 = Auction.builder()
.startPrice(30000L)
.startTime(LocalDateTime.of(2024, 10, 15, 12, 30, 30))
.endTime(LocalDateTime.of(2024, 10, 18, 12, 30, 30))
.startTime(LocalDateTime.of(2024, 11, 30, 12, 30, 30))
.endTime(LocalDateTime.of(2024, 12, 15, 12, 30, 30))
.auctionStatus(AuctionStatus.UPCOMING)
.auctionCategory(AuctionCategory.ELECTRONICS)
.seller(member1)
Expand All @@ -91,7 +91,7 @@ public void run(String... args) throws Exception {
.startPrice(5000L)
.startTime(LocalDateTime.of(2024, 10, 10, 12, 30, 30))
.endTime(LocalDateTime.of(2024, 10, 13, 12, 30, 30))
.auctionStatus(AuctionStatus.ONGOING)
.auctionStatus(AuctionStatus.ENDED)
.seller(member1)
.numOfBidders(3L)
.build();
Expand Down

0 comments on commit 61077c4

Please sign in to comment.