Skip to content

Commit d50009b

Browse files
Prosperro-atltboychuk
authored andcommitted
rename method names
1 parent 474373d commit d50009b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

1-0-java-basics/1-3-1-crazy-generics/src/test/java/com/bobocode/basics/CrazyGenericsTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -724,8 +724,8 @@ static Stream<Arguments> hasDuplicatesArgs() {
724724

725725
@Test
726726
@Order(58)
727-
@DisplayName("Method findMax has public accessor type")
728-
void findMaxHasPublicAccessorType() {
727+
@DisplayName("Method findMax has public access type")
728+
void findMaxHasPublicAccessType() {
729729
var findMaxMethod = getMethodByName(CollectionUtil.class, "findMax");
730730
assertThat(findMaxMethod).isNotNull();
731731
}
@@ -763,8 +763,8 @@ static Stream<Arguments> findMaxArgs() {
763763

764764
@Test
765765
@Order(60)
766-
@DisplayName("Method findMostRecentlyCreatedEntity has public accessor type")
767-
void findMostRecentlyCreatedEntityHasPublicAccessorType() {
766+
@DisplayName("Method findMostRecentlyCreatedEntity has public access type")
767+
void findMostRecentlyCreatedEntityHasPublicAccessType() {
768768
var findMostRecentlyCreatedEntity = getMethodByName(CollectionUtil.class, "findMostRecentlyCreatedEntity");
769769
assertThat(findMostRecentlyCreatedEntity).isNotNull();
770770
}

0 commit comments

Comments
 (0)