Skip to content

Commit

Permalink
Merge pull request #2098 from codebar/clean-up-tests
Browse files Browse the repository at this point in the history
Clean up test report
  • Loading branch information
matyikriszta authored Jul 18, 2024
2 parents 1009895 + a45033b commit a30a07c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tasks/delete_member.rake
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace :member do
invitation.save
end

member.email = "deleted_user_#{Time.zone.now.to_s(:number)}@codebar.io"
member.email = "deleted_user_#{Time.zone.now.to_fs(:number)}@codebar.io"
member.name = 'Deleted'
member.surname = 'User'
member.pronouns = nil
Expand Down
1 change: 0 additions & 1 deletion spec/features/admin/manage_sponsor_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
sponsor = Fabricate(:sponsor)

visit edit_admin_sponsor_path(sponsor)
puts page.body

expect(page.find('.small-image')['alt']).to match("#{sponsor.name} logo")

Expand Down
1 change: 0 additions & 1 deletion spec/mailers/feedback_request_mailer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

expect(email.subject).to eq(email_subject)
expect(email.from).to eq(['[email protected]'])
puts email.body
end
end
end

0 comments on commit a30a07c

Please sign in to comment.