@@ -151,7 +151,7 @@ public void testAddFieldsByType_createDv_dvHasOwner() {
151151
152152 when (dataverseService .find (1L )).thenReturn (dataverse );
153153 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
154- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
154+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
155155
156156 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
157157
@@ -177,7 +177,7 @@ public void testAddFieldsByType_createDv_dvHasNoOwner() {
177177
178178 when (dataverseService .find (1L )).thenReturn (dataverse );
179179 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
180- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
180+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
181181
182182 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
183183
@@ -195,7 +195,7 @@ public void testAddFieldsByType_createDv_objectDeleted() {
195195
196196 when (dataverseService .find (1L )).thenReturn (null );
197197 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
198- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
198+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
199199
200200 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
201201
@@ -279,7 +279,7 @@ public void testAddFieldsByType_createDs() {
279279 when (datasetVersionService .find (1L )).thenReturn (datasetVersion );
280280
281281 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
282- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
282+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
283283
284284 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
285285
@@ -404,7 +404,7 @@ public void testAddFieldsByType_createAcc() {
404404 mockedBrandingUtil .when (BrandingUtil ::getInstallationBrandName ).thenReturn ("My Test Brand Name" );
405405
406406 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
407- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
407+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
408408
409409 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
410410
@@ -433,7 +433,7 @@ public void testAddFieldsByType_ingestCompleted() {
433433 when (datasetService .find (1L )).thenReturn (dataset );
434434
435435 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
436- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
436+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
437437
438438 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
439439
@@ -454,7 +454,7 @@ public void testAddFieldsByType_ingestCompleted_objectDeleted() {
454454 when (datasetService .find (1L )).thenReturn (null );
455455
456456 when (systemConfig .getGuidesBaseUrl (false )).thenReturn ("http://guides.dataverse.org" );
457- when (systemConfig .getGuidesVersion ()).thenReturn ("v1 .0" );
457+ when (systemConfig .getGuidesVersion ()).thenReturn ("1 .0" );
458458
459459 sut .addFieldsByType (notificationJson , authenticatedUser , userNotification );
460460
0 commit comments