Skip to content

Commit

Permalink
test now uses two 16-bit frames
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 16, 2015
1 parent 1451dde commit 45508b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/mojolicious/websocket_lite_app.t
Expand Up @@ -155,7 +155,7 @@ $t->websocket_ok('/echo');
$t->tx->max_websocket_size(65536);
$t->send_ok({binary => 'c' x 65537})->finished_ok(1009);

# Binary message in two 64-bit frames without FIN bit (too large for server)
# Binary message in two frames without FIN bit (too large for server)
$t->websocket_ok('/echo')->send_ok([0, 0, 0, 0, 2, 'd' x 30000])
->send_ok([0, 0, 0, 0, 0, 'd' x 35539])->finished_ok(1009);

Expand Down

0 comments on commit 45508b4

Please sign in to comment.