test #324

Merged
klaus merged 8 commits from test into main 2025-06-10 11:01:32 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 8db5c6443d - Show all commits

View File

@ -93,7 +93,7 @@ class ChargeService(
chargeRepository.save(couponCharge)
member.charge(0, coupon.can, "pg")
return "쿠폰 사용이 완료되었습니다. ${coupon.can}캔이 지급되었습니다."
return "쿠폰 사용이 완료되었습니다.\n${coupon.can}캔이 지급되었습니다."
}
CouponType.POINT -> {
@ -121,7 +121,7 @@ class ChargeService(
)
)
return "쿠폰 사용이 완료되었습니다. ${coupon.can}포인트가 지급되었습니다."
return "쿠폰 사용이 완료되었습니다.\n${coupon.can}포인트가 지급되었습니다."
}
}
}