forked from AkkomaGang/akkoma
fix variable name -> local_user
This commit is contained in:
parent
748cc61fc7
commit
3d790050af
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ test "should return forbidden for unauthed user when target is remote" do
|
||||||
test "should return redirect for unauthed user when target is local AP ID for user" do
|
test "should return redirect for unauthed user when target is local AP ID for user" do
|
||||||
clear_config([Pleroma.Web.Endpoint, :url, :host], "sub.example.com")
|
clear_config([Pleroma.Web.Endpoint, :url, :host], "sub.example.com")
|
||||||
%{conn: conn} = oauth_access([])
|
%{conn: conn} = oauth_access([])
|
||||||
remote_user = insert(:user, %{nickname: "akkoma@sub.example.com", local: true, ap_id: "https://sub.example.com/users/akkoma"})
|
local_user = insert(:user, %{nickname: "akkoma@sub.example.com", local: true, ap_id: "https://sub.example.com/users/akkoma"})
|
||||||
|
|
||||||
resp =
|
resp =
|
||||||
conn
|
conn
|
||||||
|
@ -77,7 +77,7 @@ test "should return redirect for unauthed user when target is local AP ID for us
|
||||||
|> html_response(302)
|
|> html_response(302)
|
||||||
|
|
||||||
assert resp =~ "You are being"
|
assert resp =~ "You are being"
|
||||||
assert resp =~ "<a href=\"/users/#{remote_user.id}\">"
|
assert resp =~ "<a href=\"/users/#{local_user.id}\">"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "should return redirect for unauthed user when target is local AP ID for note activity" do
|
test "should return redirect for unauthed user when target is local AP ID for note activity" do
|
||||||
|
|
Loading…
Reference in a new issue