summaryrefslogtreecommitdiff
path: root/tests/app/Http/RequestHandlers
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Http/RequestHandlers')
-rw-r--r--tests/app/Http/RequestHandlers/PingTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Http/RequestHandlers/PingTest.php b/tests/app/Http/RequestHandlers/PingTest.php
index 77ec067797..fc5585fe4f 100644
--- a/tests/app/Http/RequestHandlers/PingTest.php
+++ b/tests/app/Http/RequestHandlers/PingTest.php
@@ -65,7 +65,7 @@ class PingTest extends TestCase
$handler = new Ping($server_check_service);
$response = $handler->handle($request);
- self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
+ self::assertSame(StatusCodeInterface::STATUS_SERVICE_UNAVAILABLE, $response->getStatusCode());
self::assertSame('ERROR', (string) $response->getBody());
}
}