Skip to content

Commit

Permalink
Default-buffered strategy shouldn't emit onError signal to the downst…
Browse files Browse the repository at this point in the history
…ream #147 (#149)
  • Loading branch information
danielkec committed Apr 8, 2022
1 parent 5c397c8 commit b604d54
Showing 1 changed file with 3 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, 2021 Contributors to the Eclipse Foundation
* Copyright (c) 2020, 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -47,6 +47,7 @@ public void testOverflow() {
await().until(() -> bean.exception() != null);
assertThat(bean.output()).doesNotContain("999");
assertThat(bean.output()).hasSizeBetween(0, 256);
assertThat(bean.failure()).isNotNull().isInstanceOf(Exception.class);
assertThat(bean.exception()).isNotNull().isInstanceOf(Exception.class);
assertThat(bean.failure()).isNull();
}
}

0 comments on commit b604d54

Please sign in to comment.