From: Michael Date: Sun, 16 Jan 2022 20:37:50 +0000 (+0000) Subject: Fix wrong return value X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0f7b48c53e461461ab694d2b34ca537d6f590db8;p=friendica.git Fix wrong return value --- diff --git a/tests/src/Module/Api/GnuSocial/Help/TestTest.php b/tests/src/Module/Api/GnuSocial/Help/TestTest.php index be0e187a63..28e7ab5ea3 100644 --- a/tests/src/Module/Api/GnuSocial/Help/TestTest.php +++ b/tests/src/Module/Api/GnuSocial/Help/TestTest.php @@ -51,6 +51,6 @@ class TestTest extends ApiTest 'Content-type' => ['text/xml'], ICanCreateResponses::X_HEADER => ['xml'] ], $response->getHeaders()); - self::assertxml($response->getBody(), 'ok'); + self::assertxml($response->getBody(), 'true'); } }