Skip to content

Commit 5c7bdea

Browse files
committed
fixes compilation errors
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 5dbacac commit 5c7bdea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rsocket-test/src/main/java/io/rsocket/test/TestFrames.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ public static ByteBuf createTestRequestNFrame() {
8787

8888
/** @return {@link ByteBuf} representing test instance of Request-Response frame */
8989
public static ByteBuf createTestRequestResponseFrame() {
90-
return RequestResponseFrameFlyweight.encode(allocator, 1, false, emptyPayload);
90+
return RequestResponseFrameFlyweight.encode(allocator, 1, emptyPayload);
9191
}
9292

9393
/** @return {@link ByteBuf} representing test instance of Request-Stream frame */
9494
public static ByteBuf createTestRequestStreamFrame() {
95-
return RequestStreamFrameFlyweight.encode(allocator, 1, false, 1L, emptyPayload);
95+
return RequestStreamFrameFlyweight.encode(allocator, 1, 1L, emptyPayload);
9696
}
9797

9898
/** @return {@link ByteBuf} representing test instance of Setup frame */

0 commit comments

Comments
 (0)