corrected junit message

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1382392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brent Worden 2012-09-09 02:56:10 +00:00
parent bd74955a01
commit 60591597c5
1 changed files with 1 additions and 1 deletions

View File

@ -1149,7 +1149,7 @@ public abstract class AbstractCollectionTest<E> extends AbstractObjectTest {
try {
getCollection().retainAll(null);
fail("removeAll should raise UnsupportedOperationException");
fail("retainAll should raise UnsupportedOperationException");
} catch (UnsupportedOperationException e) {
// expected
}