代码规范缩进

This commit is contained in:
zhangtao 2020-11-17 17:21:57 +08:00
parent def9c9670e
commit 3c5b9a269b
2 changed files with 9 additions and 9 deletions

View File

@ -130,7 +130,7 @@ public class CollectionStreamTest {
Map<Long, Student> map2 = new HashMap<>(); Map<Long, Student> map2 = new HashMap<>();
map2.put(2L, new Student(2, 2, 1, "王五")); map2.put(2L, new Student(2, 2, 1, "王五"));
compare.put(2L, map2); compare.put(2L, map2);
Assert.assertEquals(true,compare.equals(map)); Assert.assertEquals(true, compare.equals(map));
} }