summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2016-07-12 21:54:05 -0600
committermo khan <mo@mokhan.ca>2016-07-12 21:54:05 -0600
commit5229700bd67f1f10f486e25eccfd7804ee1ef248 (patch)
tree72a9150c7eaccba90271e498f06c2a629b2a9d35 /spec
parent9652dee7e5fedfafb92b5254dc50de5b35e34425 (diff)
fix broken test and remove unused translations.
Diffstat (limited to 'spec')
-rw-r--r--spec/mailers/user_mailer_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mailers/user_mailer_spec.rb b/spec/mailers/user_mailer_spec.rb
index 1141f0f..f5bc33c 100644
--- a/spec/mailers/user_mailer_spec.rb
+++ b/spec/mailers/user_mailer_spec.rb
@@ -5,7 +5,7 @@ RSpec.describe UserMailer, type: :mailer do
let(:user) { double User, username: "blah", email:"blah@example.com" }
let(:mail) { UserMailer.registration_email(user) }
it "renders the subject" do
- expect(mail.subject).to eql("Welcome to Stronglifters.")
+ expect(mail.subject).to eql("Welcome to Strong Lifters.")
end
it "renders the recipient email" do
expect(mail.to).to eql([user.email])