Skip to content

Commit

Permalink
Fix http2 test (#5216)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFreeman authored Dec 13, 2023
1 parent 2457f79 commit fc5d7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/swoole_http2_client_coro/post.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ go(function () {
$req->data = '{"type":"up"}';
$cli->send($req);
$response = $cli->recv();
Assert::true(in_array(json_decode($response->data)->error->code, [602, 10002], true));
Assert::true(in_array(json_decode($response->data)->error->code, [602, 10002, 100], true));
});
?>
--EXPECT--

0 comments on commit fc5d7d2

Please sign in to comment.