Skip to content

Commit 845d4cb

Browse files
committed
fix: updateThesis 서비스에서 저장이 되지 않는 오류 수정
1 parent 0b45e6d commit 845d4cb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

aics-admin/src/testFixtures/java/graduationUser/application/GraduationUserAdminFacadeTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,14 @@ public void init() {
5353
FakeUserRepository fakeUserRepository = new FakeUserRepository();
5454
GraduationUserCommandService graduationUserCommandService = new GraduationUserCommandService(fakeGraduationUserRepository, fakeUserRepository);
5555

56+
FakeThesisRepository fakeThesisRepository = new FakeThesisRepository();
57+
FakeCertificateRepository fakeCertificateRepository = new FakeCertificateRepository();
58+
5659
GraduationUserExcel graduationUserExcel = new GraduationUserExcelImpl();
57-
GraduationUserQueryService graduationUserQueryService = new GraduationUserQueryService(fakeGraduationUserRepository,graduationUserExcel);
60+
GraduationUserQueryService graduationUserQueryService = new GraduationUserQueryService(fakeGraduationUserRepository, fakeThesisRepository, fakeCertificateRepository, graduationUserExcel);
5861

59-
FakeThesisRepository fakeThesisRepository = new FakeThesisRepository();
6062
FakeFileRepository fakeFileRepository = new FakeFileRepository();
6163
FakeScheduleRepository fakeScheduleRepository = new FakeScheduleRepository();
62-
FakeCertificateRepository fakeCertificateRepository = new FakeCertificateRepository();
6364

6465
FileStorageServiceImpl fileStorageService = new FileStorageServiceImpl(new FilePathProperties(), new ImageResizingServiceImpl());
6566
FileCommandService fileCommandService = new FileCommandService(fakeFileRepository);

0 commit comments

Comments
 (0)