Removes an unneeded assertion in UniqueNameTest

Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
This commit is contained in:
Cruz Julian Bishop 2012-08-21 09:34:52 +10:00
parent 6e3b9ed634
commit b3a9ee1d71

View File

@ -98,7 +98,6 @@ public class UniqueNameTest {
assertNotSame(currentName, otherName);
assertNotSame(currentName.hashCode(), otherName.hashCode());
assertFalse(currentName.equals(otherName));
assertNotSame(currentName.compareTo(otherName), 0);
assertNotSame(currentName.toString(), otherName.toString());
}
}