aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-05-18 10:34:34 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-05-18 10:34:50 +0300
commit0321a3e07814c3f225f19e0372b69a7813cef15e (patch)
tree1c72c4a4138202ecc016e8e4a1a5d763d1a58bdc
parent1671864d886bf63d11bbf3d7303719e8744bfc32 (diff)
downloadpleroma-0321a3e07814c3f225f19e0372b69a7813cef15e.tar.gz
test naming fix
-rw-r--r--test/web/mastodon_api/controllers/account_controller_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/mastodon_api/controllers/account_controller_test.exs b/test/web/mastodon_api/controllers/account_controller_test.exs
index 8700ab2f5..3008970af 100644
--- a/test/web/mastodon_api/controllers/account_controller_test.exs
+++ b/test/web/mastodon_api/controllers/account_controller_test.exs
@@ -128,7 +128,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountControllerTest do
|> json_response_and_validate_schema(404)
end
- test "returns 401 for deactivated user", %{conn: conn} do
+ test "returns 404 for deactivated user", %{conn: conn} do
user = insert(:user, deactivated: true)
assert %{"error" => "Can't find user"} =