Skip to content

Commit

Permalink
๐Ÿฉน ํ…Œ์ŠคํŠธ ์ด๋ฆ„ ๊ณต๋ฐฑ ์ œ๊ฑฐ
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfogSW committed Nov 24, 2024
1 parent 8ee7228 commit f426559
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ class UserTest : DescribeSpec({
context("๋™์ผ ํšŒ์‚ฌ ํ—ˆ์šฉ ์—ฌ๋ถ€๋ฅผ ์„ ํƒํ•˜์ง€ ์•Š์€ ๊ฒฝ์šฐ") {
it("ํšŒ์‚ฌ๋ฅผ ์„ ํƒํ•˜๋ฉด ์˜ˆ์™ธ๊ฐ€ ๋ฐœ์ƒํ•œ๋‹ค") {
// arrange
val name: User.Name = fixtureMonkey.giveMeBuilder<User.Name>().sample()
val phoneNumber: PhoneNumber = PhoneNumber("01012345678")
val userGender: Gender = fixtureMonkey.giveMeBuilder<Gender>().sample()
val userBirthYear: Year = fixtureMonkey.giveMeBuilder<Year>().sample()
Expand All @@ -145,7 +144,7 @@ class UserTest : DescribeSpec({
// act & assert
shouldThrow<IllegalArgumentException> {
User.create(
name = name,
name = User.Name("ํ™๊ธธ๋™"),
phoneNumber = phoneNumber,
userGender = userGender,
userBirthYear = userBirthYear,
Expand Down

0 comments on commit f426559

Please sign in to comment.