Skip to content

Commit

Permalink
Fix ChronicleMethodReaderTest.shouldFilterByMultipleInclusionRegex
Browse files Browse the repository at this point in the history
  • Loading branch information
yevgenp committed Jun 20, 2024
1 parent 50af322 commit bef580a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,12 @@ public void shouldFilterByInclusionRegex() {
.forEach(msg -> assertThat(msg, containsString("goodbye")));
}

@Ignore("https://github.com/OpenHFT/Chronicle-Queue/issues/1150")
@Test
public void shouldFilterByMultipleInclusionRegex() {
basicReader().withInclusionRegex(".*bye$").withInclusionRegex(".*o.*").execute();
basicReader()
.withInclusionRegex(".*bye.*")
.withInclusionRegex(".*o.*")
.execute();

assertEquals(24, capturedOutput.size());
capturedOutput.stream().filter(msg -> !msg.startsWith("0x")).
Expand Down

0 comments on commit bef580a

Please sign in to comment.