Skip to content

Commit

Permalink
Corrected test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhy committed Jan 24, 2025
1 parent 9747b57 commit 9372b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/jsoup/select/ElementsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ public void tail(Node node, int depth) {
Element span = doc.children().expectFirst("span");
} catch (IllegalArgumentException e) {
threw = true;
assertEquals("No elements matched the query 'span'. in the elements", e.getMessage());
assertEquals("No elements matched the query 'span' in the elements.", e.getMessage());
}
assertTrue(threw);
}
Expand Down

0 comments on commit 9372b76

Please sign in to comment.