generated from pricelees/issue-pr-template
refactor: 테스트에서의 region 테이블 FK 충돌 해결로 인한 값 재설정
This commit is contained in:
parent
8a7778ba19
commit
dd4e022d6d
@ -72,7 +72,7 @@ object UserFixture {
|
|||||||
email: String = "sample@example.com",
|
email: String = "sample@example.com",
|
||||||
password: String = "a".repeat(MIN_PASSWORD_LENGTH),
|
password: String = "a".repeat(MIN_PASSWORD_LENGTH),
|
||||||
phone: String = "01012345678",
|
phone: String = "01012345678",
|
||||||
regionCode: String? = null,
|
regionCode: String = "1111010100",
|
||||||
status: UserStatus = UserStatus.ACTIVE
|
status: UserStatus = UserStatus.ACTIVE
|
||||||
): UserEntity = UserEntity(
|
): UserEntity = UserEntity(
|
||||||
id = id,
|
id = id,
|
||||||
@ -89,7 +89,7 @@ object UserFixture {
|
|||||||
email = "sample@example.com",
|
email = "sample@example.com",
|
||||||
password = "a".repeat(MIN_PASSWORD_LENGTH),
|
password = "a".repeat(MIN_PASSWORD_LENGTH),
|
||||||
phone = "01012345678",
|
phone = "01012345678",
|
||||||
regionCode = null
|
regionCode = "1111010100"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user