Skip to content

Commit

Permalink
chore: #19 enum 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lsm-del committed Mar 5, 2024
1 parent 0e05437 commit 074c5e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ void deleteProduct() {
// 성별 entity 생성
Gender gender = Gender.builder()
.product(product)
.gender(GenderType.Male)
.gender(GenderType.MALE)
.build();
genderRepository.save(gender);
// 나이 entity 생성
Age age = Age.builder()
.product(product)
.age(AgeType.FIFTEEN)
.age(AgeType.FIFTY)
.build();
ageRepository.save(age);
// 범주 entity 생성
Expand Down

0 comments on commit 074c5e8

Please sign in to comment.