We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91120b8 commit 47b97c4Copy full SHA for 47b97c4
tck/src/main/java/org/reactivestreams/tck/TestEnvironment.java
@@ -70,7 +70,7 @@ public void flop(String msg) {
70
// keeps passed in throwable as asyncError instead of creating a new AssertionError
71
public void flop(Throwable thr, String msg) {
72
try {
73
- fail(msg);
+ fail(msg, thr);
74
} catch (Throwable t) {
75
asyncErrors.add(thr);
76
}
@@ -167,7 +167,7 @@ public void verifyNoAsyncErrors() {
167
if (e instanceof AssertionError) {
168
throw (AssertionError) e;
169
} else {
170
- fail("Async error during test execution: " + e);
+ fail("Async error during test execution: " + e, e);
171
172
173
0 commit comments