Removed unused assertion

This commit is contained in:
meenal.bhave@alfresco.com
2019-09-30 19:02:17 +01:00
parent 13f4e6b431
commit a52f1ba56a
@@ -143,9 +143,8 @@ public class SearchSqlGSE2ETest extends AbstractGSE2ETest
sqlRequest = new SearchSqlRequest();
sqlRequest.setSql("select sc_classification, count(*) from alfresco where SITE = '" + testSite.getId() + "' group by sc_classification");
// TODO: Investigate: Actual count = 3, TS, S, C: Why U is omitted if Site is not specified
response.assertThat().body("list.pagination.count", Matchers.equalTo(4));
// TODO: Investigate: Actual count after adding Site = 3, TS, S, C: Why U is omitted if Site is not specified
response = searchSql(sqlRequest, testUserGSTopSecret);
response.assertThat().body("list.pagination.count", Matchers.equalTo(3));