changing iterations on test so it runs faster

This commit is contained in:
Clebert Suconic 2015-04-23 15:01:44 -04:00
parent 16137eabc7
commit 147a5528e4
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class LinkedListTest extends UnitTestCase
LinkedListIterator<MyObject> iter = objs.iterator();
for (int i = 0; i < 5000; i++)
for (int i = 0; i < 1000; i++)
{
for (int add = 0; add < 1000; add++)