Fixing again, the indentation issue.

This commit is contained in:
Faisal Mehmood
2022-09-18 22:09:43 +05:00
committed by GitHub
parent 874f1d15e9
commit 6e4baec90f

View File

@@ -51,13 +51,13 @@ public class SaFoxUtilTest {
Assertions.assertNotEquals(SaFoxUtil.getMarking28(), SaFoxUtil.getMarking28()); Assertions.assertNotEquals(SaFoxUtil.getMarking28(), SaFoxUtil.getMarking28());
} }
@Test @Test
public void formatDate() { public void formatDate() {
Instant instant = Instant.ofEpochMilli(1644328600364L); Instant instant = Instant.ofEpochMilli(1644328600364L);
ZonedDateTime zonedDateTime = ZonedDateTime.ofInstant(instant, ZoneId.of("Asia/Shanghai")); ZonedDateTime zonedDateTime = ZonedDateTime.ofInstant(instant, ZoneId.of("Asia/Shanghai"));
String formatDate = SaFoxUtil.formatDate(zonedDateTime); String formatDate = SaFoxUtil.formatDate(zonedDateTime);
Assertions.assertEquals(formatDate, "2022-02-08 21:56:40"); Assertions.assertEquals(formatDate, "2022-02-08 21:56:40");
} }
@Test @Test
public void searchList() { public void searchList() {