Skip to content

Commit

Permalink
Update expectation after upstream v0.20.0 release of EPS
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Feb 2, 2025
1 parent 6e8c550 commit 1714582
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ void aaa(Object obj) {
class Test {
void aaa(Object obj) {
assertThat(1).isEqualTo(1);
assertThat(1).as("foo").isEqualTo(1);
assertThat(1).withFailMessage("foo").isEqualTo(1);
assertThat(1).isNotEqualTo(2);
assertThat(1).as("foo").isNotEqualTo(2);
assertThat(1).withFailMessage("foo").isNotEqualTo(2);
}
}
"""
Expand Down

0 comments on commit 1714582

Please sign in to comment.