]> source.dussan.org Git - redmine.git/commitdiff
Fixes some parameters in functional tests.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 30 Apr 2010 10:06:51 +0000 (10:06 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 30 Apr 2010 10:06:51 +0000 (10:06 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3701 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb
test/functional/issues_controller_transaction_test.rb

index edf07dde6b338af2b1547b495cf39cd4c0d43e11..f3624de214f67882c7ea1a44e525fb280f1d785f 100644 (file)
@@ -775,7 +775,7 @@ class IssuesControllerTest < ActionController::TestCase
       put :update,
            :id => 1,
            :notes => '2.5 hours added',
-           :time_entry => { :hours => '2.5', :comments => 'test_put_update_with_note_and_spent_time', :activity_id => TimeEntryActivity.first }
+           :time_entry => { :hours => '2.5', :comments => 'test_put_update_with_note_and_spent_time', :activity_id => TimeEntryActivity.first.id }
     end
     assert_redirected_to :action => 'show', :id => '1'
     
index bac4661705074ff6e7a3617f2d98762592928eeb..dbd085bf57991185cc9e8031699fd5d6c45f1e55 100644 (file)
@@ -70,7 +70,7 @@ class IssuesControllerTransactionTest < ActionController::TestCase
                 },
                 :notes => '',
                 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}},
-                :time_entry => { :hours => '2.5', :comments => '', :activity_id => TimeEntryActivity.first }
+                :time_entry => { :hours => '2.5', :comments => '', :activity_id => TimeEntryActivity.first.id }
         end
       end
     end