We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ad760 commit 474373dCopy full SHA for 474373d
1-0-java-basics/1-3-1-crazy-generics/src/test/java/com/bobocode/basics/CrazyGenericsTest.java
@@ -765,8 +765,8 @@ static Stream<Arguments> findMaxArgs() {
765
@Order(60)
766
@DisplayName("Method findMostRecentlyCreatedEntity has public accessor type")
767
void findMostRecentlyCreatedEntityHasPublicAccessorType() {
768
- var findMaxMethod = getMethodByName(CollectionUtil.class, "findMostRecentlyCreatedEntity");
769
- assertThat(findMaxMethod).isNotNull();
+ var findMostRecentlyCreatedEntity = getMethodByName(CollectionUtil.class, "findMostRecentlyCreatedEntity");
+ assertThat(findMostRecentlyCreatedEntity).isNotNull();
770
}
771
772
@Test
0 commit comments