diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-11 21:54:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-11 21:54:30 +0200 |
commit | 65f9db73b01012fd4944be9a56ba4a85407590aa (patch) | |
tree | 72f095f38349d88f829666875bc51e4c4497fc1f /spec/controllers | |
parent | a822f7a05ac4337d45cfd930bd0d779eaf07ad57 (diff) |
Fix #2027 - Accept own ID for remote follow with and without preceding @ (#2991)
* Fix #2027 - Accept own ID for remote follow with and without preceding @ Fix #2177 - Omit leading "acct:" in remote follow redirect template expansion * Fix test
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/remote_follow_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/remote_follow_controller_spec.rb b/spec/controllers/remote_follow_controller_spec.rb index ce04e2c43..915c86f8e 100644 --- a/spec/controllers/remote_follow_controller_spec.rb +++ b/spec/controllers/remote_follow_controller_spec.rb @@ -66,7 +66,7 @@ describe RemoteFollowController do end it 'redirects to the remote location' do - address = "http://example.com/follow_me?acct=acct%3Atest_user%40#{Rails.configuration.x.local_domain}" + address = "http://example.com/follow_me?acct=test_user%40#{Rails.configuration.x.local_domain}" expect(response).to redirect_to(address) end |