Removed references to unhandled exceptions

This commit is contained in:
meenal.bhave@alfresco.com
2019-09-20 15:22:27 +01:00
parent 3ae895405b
commit 16c2483172
2 changed files with 3 additions and 3 deletions
@@ -25,7 +25,7 @@ public class SearchServicesGSE2ETest extends AbstractGSE2ETest
{
@Test(priority = 1)
public void testBasicSearch() throws Exception
public void testBasicSearch()
{
// Create a new folder
FolderModel testFolder = dataContent.usingUser(testUser).usingSite(testSite).createFolder();
@@ -72,7 +72,7 @@ public class SearchSqlGSE2ETest extends AbstractGSE2ETest
}
@Test(priority = 1, groups = {TestGroup.ACS_611n})
public void testSQLRespectsSitePermissions() throws Exception
public void testSQLRespectsSitePermissions()
{
// Search for a file name to ensure content is indexed
boolean indexingInProgress = isContentInSearchResults(fileRecord.getName(), fileRecord.getName(), true);
@@ -103,7 +103,7 @@ public class SearchSqlGSE2ETest extends AbstractGSE2ETest
}
@Test(priority = 2, groups = {TestGroup.ACS_611n}, enabled = false)
public void testSQLFiltersClassifiedFiles() throws Exception
public void testSQLFiltersClassifiedFiles()
{
// TODO: Relevant tests to be implemented
}