From 1eb913a638bfbd38775cd16eb5c7f130fbea4407 Mon Sep 17 00:00:00 2001 From: kmebin Date: Wed, 1 Nov 2023 16:19:19 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=EB=A9=A4=EB=B2=84=20=EC=97=94=ED=8B=B0?= =?UTF-8?q?=ED=8B=B0=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=97=90=20Bug=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/java/com/moabam/api/domain/entity/MemberTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/com/moabam/api/domain/entity/MemberTest.java b/src/test/java/com/moabam/api/domain/entity/MemberTest.java index a3023dca..8255d843 100644 --- a/src/test/java/com/moabam/api/domain/entity/MemberTest.java +++ b/src/test/java/com/moabam/api/domain/entity/MemberTest.java @@ -23,6 +23,7 @@ void create_member_success() { .socialId(socialId) .nickname(nickname) .profileImage(profileImage) + .bug(Bug.builder().build()) .build()); } @@ -35,6 +36,7 @@ void create_member_noImage_success() { .socialId(socialId) .nickname(nickname) .profileImage(null) + .bug(Bug.builder().build()) .build(); assertAll(