TwitterAPI: Return proper error when healthcheck is disabled

This commit is contained in:
Haelwenn (lanodan) Monnier 2023-09-24 22:52:41 +02:00 committed by tusooa
commit 35090f6eac
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51
3 changed files with 6 additions and 2 deletions

View file

@ -106,7 +106,7 @@ defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do
|> get("/api/pleroma/healthcheck")
|> json_response_and_validate_schema(503)
assert response == %{}
assert response == %{"error" => "Healthcheck disabled"}
end
test "returns 200 when healthcheck enabled and all ok", %{conn: conn} do