Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2022-07-14 00:29:33 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2022-07-16 05:44:17 +0300
commita5e5c7f3782e83d527b9b28a0e8f46fb1f83389b (patch)
tree7e7a88b1c58fd106a85bf35fbb713bc7bacc174b /spec
parentdd3bc39c97e6b6d17646c8cbf33e13c252e0c2e4 (diff)
Fix Link to OWASP CSRF more information page
closes #8365
Diffstat (limited to 'spec')
-rw-r--r--spec/mailers/notifier_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mailers/notifier_spec.rb b/spec/mailers/notifier_spec.rb
index 8129b1d36..4cdc3c319 100644
--- a/spec/mailers/notifier_spec.rb
+++ b/spec/mailers/notifier_spec.rb
@@ -548,7 +548,7 @@ describe Notifier, type: :mailer do
it "has some informative text in the body" do
email.body.parts.each do |part|
- expect(part.decoded).to include("https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)")
+ expect(part.decoded).to include("https://owasp.org/www-community/attacks/csrf")
end
end
end