diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-05-21 14:47:11 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-05-28 13:51:01 -0500 |
commit | c23b81e399d5be6fc30f4acb1d757d5eb291d8e1 (patch) | |
tree | aef336e394edecf5c565d5f3d2584555e151c9eb /test | |
parent | b221d77a6da07c684bdbc63ddf4500e0d7ffeae8 (diff) | |
download | pleroma-c23b81e399d5be6fc30f4acb1d757d5eb291d8e1.tar.gz |
Pleroma.Web.get_api_routes/0 --> Pleroma.Web.Router.get_api_routes/0
Reduce recompilation time by breaking compile-time cycles
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/plugs/frontend_static_plug_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pleroma/web/plugs/frontend_static_plug_test.exs b/test/pleroma/web/plugs/frontend_static_plug_test.exs index 100b83d6a..4152cdefe 100644 --- a/test/pleroma/web/plugs/frontend_static_plug_test.exs +++ b/test/pleroma/web/plugs/frontend_static_plug_test.exs @@ -103,6 +103,6 @@ defmodule Pleroma.Web.Plugs.FrontendStaticPlugTest do "check_password" ] - assert expected_routes == Pleroma.Web.get_api_routes() + assert expected_routes == Pleroma.Web.Router.get_api_routes() end end |