From f92d37575c2b07d7a50d8d05b6572cbf9d14ca75 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 9 Oct 2023 22:06:39 +0000 Subject: [PATCH] update --- tests/Controller/ApiControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Controller/ApiControllerTest.php b/tests/Controller/ApiControllerTest.php index b8abe7d..74e7217 100755 --- a/tests/Controller/ApiControllerTest.php +++ b/tests/Controller/ApiControllerTest.php @@ -108,6 +108,6 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase $request->setData('search', ':help introduction'); $this->module->routeSearch($request, $response); - self::assertGreaterThan(0, \count($response->get($request->uri->__toString()))); + self::assertGreaterThan(0, \count($response->getDataArray($request->uri->__toString()))); } }