##// END OF EJS Templates
Fixes failing tests from r3521...
Eric Davis -
r3408:81d617cd5b97
parent child
Show More
@@ -1124,18 +1124,18 class IssuesControllerTest < ActionController::TestCase
1124 1124 :attributes => { :href => '/issues/1/edit?issue%5Bstatus_id%5D=5',
1125 1125 :class => '' }
1126 1126 assert_tag :tag => 'a', :content => 'Immediate',
1127 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;priority_id=8',
1127 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;issue%5Bpriority_id%5D=8',
1128 1128 :class => '' }
1129 1129 # Versions
1130 1130 assert_tag :tag => 'a', :content => '2.0',
1131 :attributes => { :href => '/issues/bulk_edit?fixed_version_id=3&amp;ids%5B%5D=1',
1131 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;issue%5Bfixed_version_id%5D=3',
1132 1132 :class => '' }
1133 1133 assert_tag :tag => 'a', :content => 'eCookbook Subproject 1 - 2.0',
1134 :attributes => { :href => '/issues/bulk_edit?fixed_version_id=4&amp;ids%5B%5D=1',
1134 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;issue%5Bfixed_version_id%5D=4',
1135 1135 :class => '' }
1136 1136
1137 1137 assert_tag :tag => 'a', :content => 'Dave Lopper',
1138 :attributes => { :href => '/issues/bulk_edit?assigned_to_id=3&amp;ids%5B%5D=1',
1138 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;issue%5Bassigned_to_id%5D=3',
1139 1139 :class => '' }
1140 1140 assert_tag :tag => 'a', :content => 'Duplicate',
1141 1141 :attributes => { :href => '/projects/ecookbook/issues/1/copy',
@@ -1169,10 +1169,10 class IssuesControllerTest < ActionController::TestCase
1169 1169 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;ids%5B%5D=2',
1170 1170 :class => 'icon-edit' }
1171 1171 assert_tag :tag => 'a', :content => 'Immediate',
1172 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;ids%5B%5D=2&amp;priority_id=8',
1172 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bpriority_id%5D=8',
1173 1173 :class => '' }
1174 1174 assert_tag :tag => 'a', :content => 'Dave Lopper',
1175 :attributes => { :href => '/issues/bulk_edit?assigned_to_id=3&amp;ids%5B%5D=1&amp;ids%5B%5D=2',
1175 :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&amp;ids%5B%5D=2&amp;issue%5Bassigned_to_id%5D=3',
1176 1176 :class => '' }
1177 1177 assert_tag :tag => 'a', :content => 'Copy',
1178 1178 :attributes => { :href => '/issues/move?copy_options%5Bcopy%5D=t&amp;ids%5B%5D=1&amp;ids%5B%5D=2',
General Comments 0
You need to be logged in to leave comments. Login now