Author: hindessm
Date: Tue Jan 13 07:37:33 2009
New Revision: 734159
URL: http://svn.apache.org/viewvc?rev=734159&view=rev
Log:
Trivial typo fix.
Modified:
harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/LinkedListTest.java
Modified: harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/LinkedListTest.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/LinkedListTest.java?rev=734159&r1=734158&r2=734159&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/LinkedListTest.java
(original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/LinkedListTest.java
Tue Jan 13 07:37:33 2009
@@ -315,7 +315,7 @@
LinkedList list = new LinkedList();
try {
list.getFirst();
- fail("Shoule throw NoSuchElementException");
+ fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
// Excepted
}
@@ -332,7 +332,7 @@
LinkedList list = new LinkedList();
try {
list.getLast();
- fail("Shoule throw NoSuchElementException");
+ fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
// Excepted
}
@@ -463,7 +463,7 @@
LinkedList list = new LinkedList();
try {
list.removeFirst();
- fail("Shoule throw NoSuchElementException");
+ fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
// Excepted
}
@@ -481,7 +481,7 @@
LinkedList list = new LinkedList();
try {
list.removeLast();
- fail("Shoule throw NoSuchElementException");
+ fail("Should throw NoSuchElementException");
} catch (NoSuchElementException e) {
// Excepted
}
|