Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pstreef committed Jul 15, 2024
1 parent 5827c8c commit fcd0837
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ void organizationsStructure() {
assertThat(next.getId()).isEqualTo("Netflix");
assertThat(next.getParent().getId()).isEqualTo("Open source");
})
.assertNext(next -> {
assertThat(next.getId()).isEqualTo("Bitbucket");
assertThat(next.getParent().getId()).isEqualTo("OpenRewrite");
})
.verifyComplete();
}
}

0 comments on commit fcd0837

Please sign in to comment.