Skip to content

Commit 15566c4

Browse files
committed
Merge pull request #798 from btakashi/master
Fix sample ListTest comments, testing ArrayList not Vector
2 parents 1c6c161 + 0abc020 commit 15566c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/junit/samples/ListTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import junit.framework.TestSuite;
99

1010
/**
11-
* A sample test case, testing {@link java.util.Vector}.
11+
* A sample test case, testing {@link java.util.ArrayList}.
1212
*/
1313
public class ListTest extends TestCase {
1414
protected List<Integer> fEmpty;

src/test/java/org/junit/samples/ListTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.junit.Test;
1313

1414
/**
15-
* A sample test case, testing {@link java.util.Vector}.
15+
* A sample test case, testing {@link java.util.ArrayList}.
1616
*/
1717
public class ListTest {
1818
protected List<Integer> fEmpty;

0 commit comments

Comments
 (0)