diff --git a/e2e-test/src/test/java/org/alfresco/test/search/functional/searchServices/search/SearchSpellCheckTest.java b/e2e-test/src/test/java/org/alfresco/test/search/functional/searchServices/search/SearchSpellCheckTest.java index b0c150033..fe0fb1c8b 100644 --- a/e2e-test/src/test/java/org/alfresco/test/search/functional/searchServices/search/SearchSpellCheckTest.java +++ b/e2e-test/src/test/java/org/alfresco/test/search/functional/searchServices/search/SearchSpellCheckTest.java @@ -471,14 +471,14 @@ public class SearchSpellCheckTest extends AbstractSearchServicesE2ETest // Checks for User 2 // Incorrect spelling for files created no field - response = SearchSpellcheckQuery(testUser2, "spacefur", "spacefur"); + response = SearchSpellcheckQuery(testUser2, "spacebur", "spacebur"); // Matching Result, Spellcheck = searchInsteadFor: spacecar Assert.assertTrue(isContentInSearchResponse(response, file2.getName()), "Expected file not returned in the search results: " + file2.getName()); testSearchSpellcheckResponse(response, "searchInsteadFor", "spacecar"); // correct spelling no field - response = SearchSpellcheckQuery(testUser2, "spacebur", "spacebur"); + response = SearchSpellcheckQuery(testUser2, "spacebar", "spacebar"); // Matching Result, Spellcheck = searchInsteadFor: spacecar Assert.assertFalse(isContentInSearchResponse(response, file1.getName()), "Expected file not returned in the search results: " + file1.getName());