Skip to content

Commit

Permalink
ListTest for List, not Vector
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Takashi Hooper committed Jan 9, 2014
1 parent 21898b1 commit 0abc020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/junit/samples/ListTest.java
Expand Up @@ -8,7 +8,7 @@
import junit.framework.TestSuite;

/**
* A sample test case, testing {@link java.util.Vector}.
* A sample test case, testing {@link java.util.ArrayList}.
*/
public class ListTest extends TestCase {
protected List<Integer> fEmpty;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/junit/samples/ListTest.java
Expand Up @@ -12,7 +12,7 @@
import org.junit.Test;

/**
* A sample test case, testing {@link java.util.Vector}.
* A sample test case, testing {@link java.util.ArrayList}.
*/
public class ListTest {
protected List<Integer> fEmpty;
Expand Down

0 comments on commit 0abc020

Please sign in to comment.