]> source.dussan.org Git - redmine.git/commitdiff
Fixes functional test broken by r2246.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 7 Jan 2009 20:21:27 +0000 (20:21 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 7 Jan 2009 20:21:27 +0000 (20:21 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2248 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb

index a44779fa41cd60246ad2da8235756d71fe1f92a6..c8c5e09c577e86daadf812f3221653adb46644b2 100644 (file)
@@ -369,16 +369,16 @@ class IssuesControllerTest < Test::Unit::TestCase
     @request.session[:user_id] = 2
     post :new, :project_id => 1, 
                :issue => {:tracker_id => 1,
-                          :subject => 'This is the test_new issue',
-                          # empty description
-                          :description => '',
+                          # empty subject
+                          :subject => '',
+                          :description => 'This is a description',
                           :priority_id => 6,
                           :custom_field_values => {'1' => 'Oracle', '2' => 'Value for field 2'}}
     assert_response :success
     assert_template 'new'
     
-    assert_tag :input, :attributes => { :name => 'issue[subject]',
-                                        :value => 'This is the test_new issue' }
+    assert_tag :textarea, :attributes => { :name => 'issue[description]' },
+                          :content => 'This is a description'
     assert_tag :select, :attributes => { :name => 'issue[priority_id]' },
                         :child => { :tag => 'option', :attributes => { :selected => 'selected',
                                                                        :value => '6' },