Skip to content

Commit

Permalink
Merge branch '3.1.x'
Browse files Browse the repository at this point in the history
Closes gh-38747
  • Loading branch information
mhalbritter committed Dec 12, 2023
2 parents 198dbb4 + af8e6a4 commit a242bd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ void subSequenceWhenStartPastExistingEndShouldThrowException() {

@Test
void isEmptyWhenEmptyShouldReturnTrue() {
assertThat(new StringSequence("").isEmpty()).isTrue();
assertThat(new StringSequence("")).isEmpty();
}

@Test
void isEmptyWhenNotEmptyShouldReturnFalse() {
assertThat(new StringSequence("x").isEmpty()).isFalse();
assertThat(new StringSequence("x")).isNotEmpty();
}

@Test
Expand Down

0 comments on commit a242bd8

Please sign in to comment.