@@ -44,7 +44,7 @@ void testGetPossibleMatchGroups() throws Exception {
4444
4545
4646 // Act & Assert
47- mockMvc .perform (get ("/api/ deduplication/merge-groups" )
47+ mockMvc .perform (get ("/deduplication/merge-groups" )
4848 .param ("page" , String .valueOf (page ))
4949 .param ("size" , String .valueOf (size )))
5050 .andExpect (status ().isOk ())
@@ -56,7 +56,7 @@ void testUpdateMergeStatus() throws Exception {
5656 MergeStatusRequest request = new MergeStatusRequest (100L , false );
5757
5858 // Act & Assert
59- mockMvc .perform (post ("/api/ deduplication/merge-status" )
59+ mockMvc .perform (post ("/deduplication/merge-status" )
6060 .contentType ("application/json" )
6161 .content ("{\" personUid\" : 100, \" status\" : \" false\" }" ))
6262 .andExpect (status ().isOk ())
@@ -72,7 +72,7 @@ void testUpdateMergeStatus_Error() throws Exception {
7272 doThrow (new RuntimeException ("Some error" )).when (mergeGroupHandler ).updateMergeStatus (request );
7373
7474 // Act & Assert
75- mockMvc .perform (post ("/api/ deduplication/merge-status" )
75+ mockMvc .perform (post ("/deduplication/merge-status" )
7676 .contentType ("application/json" )
7777 .content ("{\" personUid\" : 100, \" status\" : \" false\" }" ))
7878 .andExpect (status ().isInternalServerError ())
0 commit comments