summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-10-30 19:45:32 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-10-30 19:45:32 +0000
commit9a3b8e0b1eaa6239297f53a5f1977457c28723e1 (patch)
tree8efc536cbe4986644301bf1390971d5391de79a1
parent21421917fc20abce862f7503f580871659fddd46 (diff)
downloadredmine-9a3b8e0b1eaa6239297f53a5f1977457c28723e1.tar.gz
redmine-9a3b8e0b1eaa6239297f53a5f1977457c28723e1.zip
Moved tracker_id param.
git-svn-id: http://svn.redmine.org/redmine/trunk@14772 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/integration/issues_test.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/integration/issues_test.rb b/test/integration/issues_test.rb
index 4dceaa27a..e8387535e 100644
--- a/test/integration/issues_test.rb
+++ b/test/integration/issues_test.rb
@@ -37,13 +37,15 @@ class IssuesTest < Redmine::IntegrationTest
# create an issue
def test_add_issue
log_user('jsmith', 'jsmith')
- get '/projects/ecookbook/issues/new', :tracker_id => '1'
+
+ get '/projects/ecookbook/issues/new'
assert_response :success
assert_template 'issues/new'
issue = new_record(Issue) do
- post '/projects/ecookbook/issues', :tracker_id => "1",
- :issue => { :start_date => "2006-12-26",
+ post '/projects/ecookbook/issues',
+ :issue => { :tracker_id => "1",
+ :start_date => "2006-12-26",
:priority_id => "4",
:subject => "new test issue",
:category_id => "",