diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/views/request/show.rhtml_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/views/request/show.rhtml_spec.rb b/spec/views/request/show.rhtml_spec.rb index 6e36a7ab6..9141a802b 100644 --- a/spec/views/request/show.rhtml_spec.rb +++ b/spec/views/request/show.rhtml_spec.rb @@ -99,7 +99,7 @@ describe 'when viewing an information request' do it 'should show a link to follow up the last response with clarification' do request_page expected_url = "http://test.host/request/#{@mock_request.id}/response/#{@mock_response.id}#followup" - response.should have_selector("a[href=#{expected_url}]", :content => 'send a follow up message') + response.should have_selector("a", :href => expected_url, :content => 'send a follow up message') end end @@ -119,7 +119,7 @@ describe 'when viewing an information request' do it 'should show a link to follow up the request without reference to a specific response' do request_page expected_url = "http://test.host/request/#{@mock_request.id}/response#followup" - response.should have_selector("a[href=#{expected_url}]", :content => 'send a follow up message') + response.should have_selector("a", :href => expected_url, :content => 'send a follow up message') end end end |