Commit db2cdf3

mo khan <mo@mokhan.ca>
2015-03-31 01:16:30
fix broken spec.
1 parent 4fd1512
Changed files (1)
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 Supply.")
+      expect(mail.subject).to eql("Welcome to Supply Crow.")
     end
     it "renders the recipient email" do
       expect(mail.to).to eql([user.email])