Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Mar 14, 2024
2 parents 5aceaa5 + 9f461fa commit 0227e74
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 0227e74

Please sign in to comment.