ManyUsersTest: ArrayList --> LinkedList
This commit is contained in:
parent
c59123e974
commit
0fa2b5c25d
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ import java.io.BufferedOutputStream;
|
|||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
|
@ -39,7 +39,7 @@ public class ManyUsersTest extends AbstractUserTest {
|
|||
|
||||
@Before
|
||||
public void before() {
|
||||
users = new ArrayList<>();
|
||||
users = new LinkedList<>();
|
||||
for (int i = 0; i < COUNT; i++) {
|
||||
users.add(createUserRep("user" + i));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue