Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

review: refactor: SignaturePrinter prints type parameter bounds, no name #2410

Merged
merged 2 commits into from
Aug 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix signature test
  • Loading branch information
pvojtechovsky committed Aug 26, 2018
commit 434126171133740434afc16c88055e56a4425fc8
2 changes: 1 addition & 1 deletion src/test/java/spoon/test/method/MethodTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void testGetAllMethodsAdaptingType() {
boolean compareFound = false;
for (CtMethod<?> method : allMethods) {
if ("compare".equals(method.getSimpleName())) {
assertEquals("compare(T,T)", method.getSignature());
assertEquals("compare(java.lang.Object,java.lang.Object)", method.getSignature());
compareFound = true;
}
}
Expand Down