diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-10 23:05:07 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-10 23:05:07 +0300 |
commit | bb693768ff6f6afcb0b888b5a39100c6ff41f6bf (patch) | |
tree | c98faa365dfed7e4f408b5b527bed4636d99e472 /test/web/controller/frontend/headless_controller_test.exs | |
parent | 6f0ac38f1d59264086e40392a59a1d753bd9b356 (diff) | |
download | pleroma-bb693768ff6f6afcb0b888b5a39100c6ff41f6bf.tar.gz |
Partially fix tests
Diffstat (limited to 'test/web/controller/frontend/headless_controller_test.exs')
-rw-r--r-- | test/web/controller/frontend/headless_controller_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/controller/frontend/headless_controller_test.exs b/test/web/controller/frontend/headless_controller_test.exs index 96061c15a..db9b8ef27 100644 --- a/test/web/controller/frontend/headless_controller_test.exs +++ b/test/web/controller/frontend/headless_controller_test.exs @@ -10,7 +10,7 @@ defmodule Pleroma.Web.Frontend.HeadlessControllerTest do test "Returns 404", %{conn: conn} do Pleroma.Config.put([:frontends, :primary], %{"name" => "none", "ref" => ""}) - conn = get(conn, frontend_path(conn, :index, [])) + conn = get(conn, frontend_path(conn, :index_with_preload, [])) assert text_response(conn, 404) == "" end end |