Commit 687cac0cb3dfa4371cf3af5303fb50fb2a2f5798

Authored by Daniela Feitosa
2 parents bd4954d3 82870e4c

Merge remote branch 'unb-gama/fix_agenda_improvement_test' into next

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
test/functional/events_controller_test.rb
... ... @@ -34,8 +34,8 @@ class EventsControllerTest < ActionController::TestCase
34 34 next_month = Date.today + 1.month
35 35 prev_month_name = prev_month.strftime("%B")
36 36 next_month_name = next_month.strftime("%B")
37   - assert_tag :tag =>'a', :attributes => {:href => "/profile/#{profile.identifier}/events/#{next_month.year}/#{prev_month.month}"}, :content => prev_month_name
38   - assert_tag :tag =>'a', :attributes => {:href => "/profile/#{profile.identifier}/events/#{prev_month.year}/#{next_month.month}"}, :content => next_month_name
  37 + assert_tag :tag =>'a', :attributes => {:href => "/profile/#{profile.identifier}/events/#{prev_month.year}/#{prev_month.month}"}, :content => prev_month_name
  38 + assert_tag :tag =>'a', :attributes => {:href => "/profile/#{profile.identifier}/events/#{next_month.year}/#{next_month.month}"}, :content => next_month_name
39 39 end
40 40  
41 41 end
... ...