diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-11 00:10:23 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-11 00:10:23 +0300 |
commit | 99e25649ebecca21bcc94c916701e9904107ad8b (patch) | |
tree | 5251a053975a181c6e52ab18a01296363f99e1e5 | |
parent | 1f1ccdc6e5c0c1d09904f3f0fe454d1432da7131 (diff) | |
download | pleroma-99e25649ebecca21bcc94c916701e9904107ad8b.tar.gz |
Fix MastoFE tests
-rw-r--r-- | test/web/controller/frontend/mastodon_controller_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/controller/frontend/mastodon_controller_test.exs b/test/web/controller/frontend/mastodon_controller_test.exs index 8dbc18354..c45554159 100644 --- a/test/web/controller/frontend/mastodon_controller_test.exs +++ b/test/web/controller/frontend/mastodon_controller_test.exs @@ -24,7 +24,7 @@ defmodule Pleroma.Web.Frontend.MastodonControllerTest do assert _result = json_response(conn, 200) user = User.get_cached_by_ap_id(user.ap_id) - assert user.settings == %{"programming" => "socks"} + assert user.mastofe_settings == %{"programming" => "socks"} end describe "index/2 redirections" do |