Skip to content

Commit

Permalink
Fix another test
Browse files Browse the repository at this point in the history
  • Loading branch information
donhardman committed Dec 10, 2024
1 parent a2fccf8 commit 4770dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Plugin/Insert/InsertQuery/InsertQueryHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function () use ($handler, $resp) {
$this->assertEquals(true, $task->isSucceed());
/** @var Struct<string,mixed> */
$result = $task->getResult()->getStruct();
$this->assertEquals($resp, $result->toJson());
$this->assertEquals($resp, json_encode($result));
}
);
\Swoole\Event::wait();
Expand Down

0 comments on commit 4770dde

Please sign in to comment.