Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Dec 24, 2024
1 parent a0e4589 commit 547d203
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ void add_shouldWorkTillCompletionWhenAddingBlobsBeforeBlockIsSet() {
SafeFutureAssert.assertThatSafeFuture(completionFuture).isNotCompleted();
assertThatThrownBy(blockBlobSidecarsTracker::getMissingBlobSidecars)
.isInstanceOf(IllegalStateException.class)
.hasMessage("Block must me known to call this method");
.hasMessage("Block must be known to call this method");
assertThat(blockBlobSidecarsTracker.getBlobSidecars())
.containsExactlyInAnyOrderEntriesOf(added);

Expand Down Expand Up @@ -266,7 +266,7 @@ void getMissingBlobSidecars_shouldThrowWhenBlockIsUnknown() {

assertThatThrownBy(blockBlobSidecarsTracker::getMissingBlobSidecars)
.isInstanceOf(IllegalStateException.class)
.hasMessage("Block must me known to call this method");
.hasMessage("Block must be known to call this method");
}

@Test
Expand Down

0 comments on commit 547d203

Please sign in to comment.