Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
picman committed Dec 14, 2023
1 parent 8faae7f commit 44bc99b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
name: "GitHub CI"
on:
push:
branches: ["devel"]
branches: ["test"]
pull_request:
branches: ["devel"]
branches: ["test"]
jobs:
plugin_tests:
strategy:
Expand Down
4 changes: 2 additions & 2 deletions test/unit/custom_workflow_mailer_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def test_truth
def test_custom_email
CustomWorkflowMailer.deliver_custom_email @user2, subject: 'Subject', text_body: 'Body', html_body: 'Body'
email = last_email
assert text_part(email).body.include? 'Body'
assert html_part(email).body.include? 'Body'
assert text_part(email).body.include? 'Body', text_part(email).body
assert html_part(email).body.include? 'Body', html_part(email).body
end

private
Expand Down

0 comments on commit 44bc99b

Please sign in to comment.