Skip to content

Commit

Permalink
Add missing verify() in Jackson2TokenizerTests
Browse files Browse the repository at this point in the history
Closes gh-24056
  • Loading branch information
rstoyanchev committed Nov 22, 2019
1 parent 529f8ba commit fbde98f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ public void testLimit() {
.expectNext(expected)
.verifyComplete();

StepVerifier.create(decode(source, false, maxInMemorySize - 1))
.expectError(DataBufferLimitException.class);
StepVerifier.create(decode(source, false, maxInMemorySize - 2))
.verifyError(DataBufferLimitException.class);
}

@Test
Expand Down

0 comments on commit fbde98f

Please sign in to comment.