From 00e93ba7654659fbed66f789964bb354d1d894ed Mon Sep 17 00:00:00 2001 From: Gonzalo Rodriguez <gonzalo@wyeworks.com> Date: Thu, 13 Oct 2011 00:01:05 -0200 Subject: [PATCH] Fix people_controller specs --- spec/controllers/people_controller_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/controllers/people_controller_spec.rb b/spec/controllers/people_controller_spec.rb index 308f84e305..ecf770ed34 100644 --- a/spec/controllers/people_controller_spec.rb +++ b/spec/controllers/people_controller_spec.rb @@ -84,12 +84,12 @@ describe PeopleController do it 'goes to a tag page if you search for a hash' do get :index, :q => '#babies' - response.should redirect_to('/tags/babies') + response.should redirect_to(tag_path('babies', :q => '#babies')) end it 'goes to a tag page if you search for a hash with dots' do get :index, :q => '#babi.es' - response.should redirect_to('/tags/babies') + response.should redirect_to(tag_path('babies', :q => '#babi.es')) end end -- GitLab