Skip to content

Commit

Permalink
main
Browse files Browse the repository at this point in the history
  • Loading branch information
6562680 committed Dec 5, 2024
1 parent 8ba9ba4 commit 8c7bfc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public static function assert_call(
if ($except->result !== $result) {
$microtime = round(microtime(true) - $microtime, 6);

static::debug_diff_var_dump($result, $except->result, $diff);
static::debug_diff_var_dump($except->result, $result, $diff);

$error = [
'Test result check failed',
Expand All @@ -382,7 +382,7 @@ public static function assert_call(
}

if (property_exists($except, 'output')) {
if (static::debug_diff($output, $except->output, $diff)) {
if (static::debug_diff($except->output, $output, $diff)) {
$microtime = round(microtime(true) - $microtime, 6);

$error = [
Expand Down

0 comments on commit 8c7bfc1

Please sign in to comment.