mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-30 11:58:36 +00:00
security: add type argument to fix compile
Original commit: elastic/x-pack-elasticsearch@81acbd2e29
This commit is contained in:
parent
d08446e221
commit
931c67b49c
@ -159,7 +159,7 @@ public class TransportGetUsersActionTests extends ESTestCase {
|
||||
}
|
||||
|
||||
public void testGetAllUsers() {
|
||||
final List<User> storeUsers = randomFrom(Collections.emptyList(), Collections.singletonList(new User("joe")),
|
||||
final List<User> storeUsers = randomFrom(Collections.<User>emptyList(), Collections.singletonList(new User("joe")),
|
||||
Arrays.asList(new User("jane"), new User("fred")), randomUsers());
|
||||
NativeUsersStore usersStore = mock(NativeUsersStore.class);
|
||||
TransportGetUsersAction action = new TransportGetUsersAction(Settings.EMPTY, mock(ThreadPool.class),
|
||||
|
Loading…
x
Reference in New Issue
Block a user