Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek authored Dec 19, 2024
1 parent bca5be5 commit 935cbf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ void javaLangObject() {
JavaType.Class c = (JavaType.Class) firstMethodParameter("javaType");
assertThat(c.getFullyQualifiedName()).isEqualTo("java.lang.Object");
assertThat(c.getSupertype()).isNull();
assertThat(c.getMethods()).hasSize(13);
assertThat(c.getMethods()).hasSize(12);

// Assert generic type parameters have the correct type bounds.
JavaType.Method method = c.getMethods().stream().filter(it -> "getClass".equals(it.getName())).findFirst().orElse(null);
Expand Down

0 comments on commit 935cbf6

Please sign in to comment.