forked from AkkomaGang/akkoma
Admin API tests: Fix wrong test.
This commit is contained in:
parent
4bce13fa2f
commit
f1750b4658
1 changed files with 2 additions and 2 deletions
|
@ -1880,10 +1880,10 @@ test "deletes status", %{conn: conn, id: id, admin: admin} do
|
|||
"@#{admin.nickname} deleted status ##{id}"
|
||||
end
|
||||
|
||||
test "returns error when status is not exist", %{conn: conn} do
|
||||
test "returns 404 when the status does not exist", %{conn: conn} do
|
||||
conn = delete(conn, "/api/pleroma/admin/statuses/test")
|
||||
|
||||
assert json_response(conn, :bad_request) == "Could not delete"
|
||||
assert json_response(conn, :not_found) == "Not found"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue