Skip to content

Commit

Permalink
chore: 혼용되던 베지테리안, 베지테리언을 베지테리언으로 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
sejeongsong committed Nov 14, 2023
1 parent f6866bf commit 7ad9296
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.foodymoody.be.member.util;

public enum MemberFixture {
회원_알버트(null,"albert@albert.com", "testtest123!", "알버트", "베지테리안", "https://www.image.com"),
회원_설리(null,"sully@sully.com", "testtest123!", "설리", "베지테리안", "https://www.image.com"),
회원_보노(null,"bono@bono.com", "testtest123!", "보노", "베지테리안", "https://www.image.com"),
회원_알버트(null,"albert@albert.com", "testtest123!", "알버트", "베지테리언", "https://www.image.com"),
회원_설리(null,"sully@sully.com", "testtest123!", "설리", "베지테리언", "https://www.image.com"),
회원_보노(null,"bono@bono.com", "testtest123!", "보노", "베지테리언", "https://www.image.com"),
회원_아티("1", "ati@ati.com", "ati123!", "아티", "베지테리언", null),
회원_푸반("2", "puban@puban.com", "puban123!", "푸반", "베지테리언", null);

Expand Down
4 changes: 2 additions & 2 deletions be/src/test/resources/data.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
INSERT INTO mood (id, name) VALUES ('1', '베지테리안');
INSERT INTO mood (id, name) VALUES ('2', '베지테리안2');
INSERT INTO mood (id, name) VALUES ('1', '베지테리언');
INSERT INTO mood (id, name) VALUES ('2', '베지테리언2');
INSERT INTO mood (id, name) VALUES ('3', '무드1');
INSERT INTO mood (id, name) VALUES ('4', '무드2');
INSERT INTO mood (id, name) VALUES ('5', '무드3');
Expand Down

0 comments on commit 7ad9296

Please sign in to comment.