Use String#isEmpty()
This commit is contained in:
parent
ced89f524f
commit
cbb1f0b2ad
|
@ -299,7 +299,7 @@ public abstract class AbstractListTest<E> extends AbstractCollectionTest<E> {
|
|||
|
||||
resetFull();
|
||||
list = getCollection();
|
||||
assertFalse(list.equals(""), "List shouldn't equal String");
|
||||
assertFalse(list.isEmpty(), "List shouldn't equal String");
|
||||
verify();
|
||||
|
||||
final List<E> listForC = Arrays.asList(getFullElements());
|
||||
|
|
Loading…
Reference in New Issue