]> source.dussan.org Git - redmine.git/commitdiff
Fixes odd test failures.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 21 Dec 2009 20:02:51 +0000 (20:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 21 Dec 2009 20:02:51 +0000 (20:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3212 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb

index 6a37450400c9b15c904d5d6d9a8e760d11caa1bf..e73e24a05e4d5f0821aa01cfa7e0a4d4cc1dd2aa 100644 (file)
@@ -805,7 +805,7 @@ class IssuesControllerTest < ActionController::TestCase
     assert_redirected_to :action => 'show', :id => '1'
     issue.reload
     assert_equal 2, issue.status_id
-    j = issue.journals.find(:first, :order => 'id DESC')
+    j = Journal.find(:first, :order => 'id DESC')
     assert_equal 'Assigned to dlopper', j.notes
     assert_equal 2, j.details.size
     
@@ -822,7 +822,7 @@ class IssuesControllerTest < ActionController::TestCase
          :id => 1,
          :notes => notes
     assert_redirected_to :action => 'show', :id => '1'
-    j = Issue.find(1).journals.find(:first, :order => 'id DESC')
+    j = Journal.find(:first, :order => 'id DESC')
     assert_equal notes, j.notes
     assert_equal 0, j.details.size
     assert_equal User.anonymous, j.user
@@ -844,7 +844,7 @@ class IssuesControllerTest < ActionController::TestCase
     
     issue = Issue.find(1)
     
-    j = issue.journals.find(:first, :order => 'id DESC')
+    j = Journal.find(:first, :order => 'id DESC')
     assert_equal '2.5 hours added', j.notes
     assert_equal 0, j.details.size