]> source.dussan.org Git - redmine.git/commitdiff
Really adjusts error message in tests (#14086).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 4 Jun 2013 17:41:58 +0000 (17:41 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 4 Jun 2013 17:41:58 +0000 (17:41 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11928 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/issue_test.rb

index 9bd5b018b40fe88d0c9f3c007855900cd397a8b5..0fa8808097100b3fa60c783010a5df6da2d355f5 100644 (file)
@@ -1525,7 +1525,7 @@ class IssueTest < ActiveSupport::TestCase
     child = Issue.new(:parent_issue_id => issue2.id, :start_date => '2012-10-16',
       :project_id => 1, :tracker_id => 1, :status_id => 1, :subject => 'Child', :author_id => 1)
     assert !child.valid?
-    assert_include 'cannot be earlier than 10/18/2012 because of preceding issues', child.errors.full_messages
+    assert_include 'Start date cannot be earlier than 10/18/2012 because of preceding issues', child.errors.full_messages
     assert_equal Date.parse('2012-10-18'), child.soonest_start
     child.start_date = '2012-10-18'
     assert child.save