@@ -104,9 +104,9 @@ public void testfindById() {
104104 public void testFindAll () {
105105 List <ProfileEntity > all = profileDao .getAll ();
106106 assertNotNull (all );
107- assertEquals (22 , all .size ());
107+ assertEquals (23 , all .size ());
108108 Long count = profileDao .countAll ();
109- assertEquals (Long .valueOf (22 ), count );
109+ assertEquals (Long .valueOf (23 ), count );
110110 }
111111
112112 @ Test
@@ -127,7 +127,7 @@ public void testInsert() throws DataSetException {
127127 assertEquals (profile .getDateCreated (), profile .getLastModified ());
128128
129129 Long count = profileDao .countAll ();
130- assertEquals (Long .valueOf (23 ), count );
130+ assertEquals (Long .valueOf (24 ), count );
131131 profile = profileDao .find (newOrcid );
132132
133133 assertNotNull (profile );
@@ -151,7 +151,7 @@ public void testInsertWithPrimaryInstitutions() throws DataSetException {
151151 assertNotNull (profile .getLastModified ());
152152
153153 Long count = profileDao .countAll ();
154- assertEquals (Long .valueOf (23 ), count );
154+ assertEquals (Long .valueOf (24 ), count );
155155 profile = profileDao .find (newOrcid );
156156
157157 assertNotNull (profile );
@@ -177,7 +177,7 @@ public void testInsertWithInstitutionDepartments() throws DataSetException {
177177 assertNotNull (retrievedProfile .getLastModified ());
178178
179179 Long count = profileDao .countAll ();
180- assertEquals (Long .valueOf (23 ), count );
180+ assertEquals (Long .valueOf (24 ), count );
181181 }
182182
183183 @ Test
@@ -278,12 +278,12 @@ public void testUpdateIndexingStatus() {
278278 public void testGetConfirmedProfileCount () {
279279 String orcid = "4444-4444-4444-4446" ;
280280 Long confirmedProfileCount = profileDao .getConfirmedProfileCount ();
281- assertEquals (Long .valueOf (22 ), confirmedProfileCount );
281+ assertEquals (Long .valueOf (23 ), confirmedProfileCount );
282282 ProfileEntity profileEntity = profileDao .find (orcid );
283283 profileEntity .setCompletedDate (null );
284284 profileDao .persist (profileEntity );
285285 confirmedProfileCount = profileDao .getConfirmedProfileCount ();
286- assertEquals (Long .valueOf (21 ), confirmedProfileCount );
286+ assertEquals (Long .valueOf (22 ), confirmedProfileCount );
287287 }
288288
289289 @ Test
0 commit comments