This commit is contained in:
Looly 2023-09-20 20:52:49 +08:00
parent 2bd8b03c06
commit 58be7dcd97

View File

@ -0,0 +1,12 @@
package cn.hutool.core.date;
import org.junit.Assert;
import org.junit.Test;
public class IssueI82Y1LTest {
@Test
public void parseTest() {
final String dt1 = "2023-09-14T05:00:03.648519Z";
Assert.assertEquals("2023-09-14 05:10:51", DateUtil.parse(dt1).toString());
}
}