Skip to content

Commit

Permalink
LPS-69935 SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Jan 26, 2017
1 parent 8c8b4e7 commit b26f569
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -330,13 +330,13 @@ public void testFindByKeywordsWithInheritedRolesThroughSite()

@Test
public void testFindBySocialUsers() throws Exception {
List<User> socialUsers = UserFinderUtil.findBySocialUsers(
List<User> users = UserFinderUtil.findBySocialUsers(
TestPropsValues.getCompanyId(), _groupUser.getUserId(),
SocialRelationConstants.TYPE_BI_CONNECTION, StringPool.EQUAL,
WorkflowConstants.STATUS_APPROVED, QueryUtil.ALL_POS,
QueryUtil.ALL_POS, new UserFirstNameComparator(true));

Assert.assertEquals(1, socialUsers.size());
Assert.assertEquals(1, users.size());
}

private static Group _group;
Expand Down

0 comments on commit b26f569

Please sign in to comment.