summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-04-30 10:06:51 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-04-30 10:06:51 +0000
commit3db77a86a96b10333fcccf85b0c53ce57d4f4de8 (patch)
tree75edf539cef5e9dc5d3a330c8d6f4de40845542d /test/functional
parentb6cd076441cd0f273ac23d7a452e29189275f7ff (diff)
downloadredmine-3db77a86a96b10333fcccf85b0c53ce57d4f4de8.tar.gz
redmine-3db77a86a96b10333fcccf85b0c53ce57d4f4de8.zip
Fixes some parameters in functional tests.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3701 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/issues_controller_test.rb2
-rw-r--r--test/functional/issues_controller_transaction_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index edf07dde6..f3624de21 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -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'
diff --git a/test/functional/issues_controller_transaction_test.rb b/test/functional/issues_controller_transaction_test.rb
index bac466170..dbd085bf5 100644
--- a/test/functional/issues_controller_transaction_test.rb
+++ b/test/functional/issues_controller_transaction_test.rb
@@ -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