From 15aafd779f48e5013c30a74ef7edfba694b89fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Pi=C4=8Dman?= Date: Fri, 15 Dec 2023 07:45:32 +0100 Subject: [PATCH] test --- test/unit/custom_workflow_mailer_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/custom_workflow_mailer_test.rb b/test/unit/custom_workflow_mailer_test.rb index eeb9513..6dfc70f 100644 --- a/test/unit/custom_workflow_mailer_test.rb +++ b/test/unit/custom_workflow_mailer_test.rb @@ -48,7 +48,7 @@ def test_truth def test_custom_email_template CustomWorkflowMailer.deliver_custom_email @user2, subject: 'Subject', template_name: 'mailer/my_email', - template_params: { url: Rails.root } + template_params: { url: Rails.root.to_s } email = last_email assert text_part(email).body.include?('Body'), Rails.root.to_s assert html_part(email).body.include?('Body'), Rails.root.to_s