From 13c0e0f333f4f8f2ae24895f4b38c13db1ffb10c Mon Sep 17 00:00:00 2001 From: Baptiste Langlade Date: Sun, 10 Mar 2024 17:02:31 +0100 Subject: [PATCH] return error to see why the test fail --- tests/FunctionalTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FunctionalTest.php b/tests/FunctionalTest.php index 2bb51bd..d794078 100644 --- a/tests/FunctionalTest.php +++ b/tests/FunctionalTest.php @@ -61,7 +61,7 @@ public function testServerRespond() )) ->match( static fn($success) => $success->response(), - static fn() => null, + static fn($error) => $error, ); $this->assertInstanceOf(Response::class, $response);