Best not to repeat misunderstanding in LANG-666 ...

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1043653 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-12-08 20:14:24 +00:00
parent 7e818c5afa
commit c02c326324
1 changed files with 2 additions and 2 deletions

View File

@ -1918,7 +1918,7 @@ public class StringUtilsTest extends TestCase {
}
public void testLANG666() {
assertEquals("12",StringUtils.stripEnd("120.00", ".00"));
assertEquals("121",StringUtils.stripEnd("121.00", ".00"));
assertEquals("12",StringUtils.stripEnd("120.00", ".0"));
assertEquals("121",StringUtils.stripEnd("121.00", ".0"));
}
}