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 f6b4469 commit 5492447Copy full SHA for 5492447
rsocket-core/src/test/java/io/rsocket/core/RSocketRequesterTest.java
@@ -356,6 +356,9 @@ public void shouldThrownExceptionIfGivenPayloadIsExitsSizeAllowanceWithNoFragmen
356
.isInstanceOf(IllegalArgumentException.class)
357
.hasMessage(INVALID_PAYLOAD_ERROR_MESSAGE))
358
.verify();
359
+ // FIXME: should be removed
360
+ Assertions.assertThat(rule.connection.getSent())
361
+ .allMatch(bb -> bb.release());
362
rule.assertHasNoLeaks();
363
});
364
}
0 commit comments