Remove tab characters
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1592330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2f0beab7a8
commit
00dc479f6a
|
@ -329,11 +329,11 @@ public class FastDateParserTest {
|
|||
checkParse(locale, sdf, fdf, formattedDate.toUpperCase(locale));
|
||||
}
|
||||
|
||||
private void checkParse(final Locale locale, final SimpleDateFormat sdf, final DateParser fdf, final String formattedDate) throws ParseException {
|
||||
final Date expectedTime = sdf.parse(formattedDate);
|
||||
private void checkParse(final Locale locale, final SimpleDateFormat sdf, final DateParser fdf, final String formattedDate) throws ParseException {
|
||||
final Date expectedTime = sdf.parse(formattedDate);
|
||||
final Date actualTime = fdf.parse(formattedDate);
|
||||
assertEquals(locale.toString()+" "+formattedDate +"\n",expectedTime, actualTime);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParseNumerics() throws ParseException {
|
||||
|
|
Loading…
Reference in New Issue