소스 검색

Birth Certificate family uppercase on save (2)

Andrew Grant 6 달 전
부모
커밋
3e1173f0d1
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      src/test/java/scot/carricksoftware/grants/bootstrap/DataLoadCertificatesTest.java

+ 1 - 6
src/test/java/scot/carricksoftware/grants/bootstrap/DataLoadCertificatesTest.java

@@ -14,7 +14,6 @@ import scot.carricksoftware.grants.enums.certificates.CertificateType;
 import scot.carricksoftware.grants.services.certificates.birthcertificates.BirthCertificateService;
 import scot.carricksoftware.grants.services.certificates.deathcertificates.DeathCertificateService;
 import scot.carricksoftware.grants.services.people.PersonService;
-import scot.carricksoftware.grants.services.places.organisations.OrganisationService;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.mockito.Mockito.verify;
@@ -35,16 +34,12 @@ public class DataLoadCertificatesTest {
     @Mock
     private PersonService personServiceMock;
 
-    @Mock
-    private OrganisationService organisationServiceMock;
-
 
     @BeforeEach
     public void setUp() {
         dataLoadCertificates = new DataLoadCertificates(birthCertificateServiceMock,
                 deathCertificateServiceMock,
-                personServiceMock,
-                organisationServiceMock);
+                personServiceMock);
     }
 
     @Test