summaryrefslogtreecommitdiffstats
path: root/test/functional/messages_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-24 09:02:55 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-24 09:02:55 +0000
commit51b745470c1d71b92072210a008f29c5d5a945d1 (patch)
treecfccde0e4883f2dae2092945754628375f0c630d /test/functional/messages_controller_test.rb
parent11346455a120b2260ad83f06ac9747fd946a39ef (diff)
downloadredmine-51b745470c1d71b92072210a008f29c5d5a945d1.tar.gz
redmine-51b745470c1d71b92072210a008f29c5d5a945d1.zip
Fixes a test that was broken by r2294.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2303 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/messages_controller_test.rb')
-rw-r--r--test/functional/messages_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/messages_controller_test.rb b/test/functional/messages_controller_test.rb
index 9bd1cc524..7f6c3854b 100644
--- a/test/functional/messages_controller_test.rb
+++ b/test/functional/messages_controller_test.rb
@@ -78,7 +78,7 @@ class MessagesControllerTest < Test::Unit::TestCase
mail = ActionMailer::Base.deliveries.last
assert_kind_of TMail::Mail, mail
- assert_equal "[#{message.board.project.name} - #{message.board.name}] Test created message", mail.subject
+ assert_equal "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] Test created message", mail.subject
assert mail.body.include?('Message body')
# author
assert mail.bcc.include?('jsmith@somenet.foo')