Skip to content

Commit

Permalink
Fix Radix Test case on jdk 8~17
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Oct 29, 2024
1 parent bf4f0c0 commit 3785c8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class RadixTreeTest extends Specification {
tree.addPath("/update/{ruleId}", "a")
tree.addPath("/update/{ruleId}/state", "b")
expect:
tree.match(path).first.value == result
tree.match(path).get(0).value == result
where:
path | result
'/update/1222222' | 'a'
Expand Down

0 comments on commit 3785c8d

Please sign in to comment.