Skip to content

Commit

Permalink
Fixed some warnings, appearing during clean install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaklbela committed Mar 5, 2024
1 parent 790c6ef commit 9f461fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/jpeek/skeleton/SkeletonTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ void findsMethodsAndArgs() {
"//class/methods[count(method)=7]",
"//method[@name='methodSix']/args[count(arg)=1]",
"//method[@name='methodSix']/args/arg[@type='Ljava/sql/Timestamp']",
"//method[@name='methodSix' and return='Ljava/util/Date']",
"//method[@name='methodTwo' and return='V']",
"//method[@name='methodSix' and child::return='Ljava/util/Date']",
"//method[@name='methodTwo' and child::return='V']",
"//method[@name='methodOne']/args/arg[@type='Ljava/lang/Object']"
)
).affirm();
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/jpeek/skeleton/TypesOfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void parsesSignature() {
XhtmlMatchers.hasXPaths(
"/method/args[count(arg) = 2]",
"/method/args/arg[@type = 'Ljava/lang/String']",
"/method[return='Z']"
"/method[child::return='Z']"
)
).affirm();
}
Expand Down

0 comments on commit 9f461fa

Please sign in to comment.