From aa294ee289e84a2c9314ff2672e1e266ab08d103 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Wed, 14 Nov 2012 10:06:59 +0000 Subject: Respond -> Response --- lib/custodian/protocol-tests/http.rb | 4 ++-- lib/custodian/protocol-tests/https.rb | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/custodian/protocol-tests/http.rb b/lib/custodian/protocol-tests/http.rb index 67defca..2a60063 100755 --- a/lib/custodian/protocol-tests/http.rb +++ b/lib/custodian/protocol-tests/http.rb @@ -84,10 +84,10 @@ class HTTPTest # Do we need to search for text in the body of the reply? # if ( @test_data['http_text'] ) - puts "Testing for text in the response: #{@test_data['http_text']}" if ( @test_data['verbose'] ) + puts "Testing for text in the response: '#{@test_data['http_text']}'" if ( @test_data['verbose'] ) if (! @body.match(/#{@test_data['http_text']}/i) ) - @error = "#{@error} The respond did not contain #{test_data['http_text']}" + @error = "#{@error} The response did not contain our expected text '#{test_data['http_text']}'" end end diff --git a/lib/custodian/protocol-tests/https.rb b/lib/custodian/protocol-tests/https.rb index 642908f..8fb643f 100755 --- a/lib/custodian/protocol-tests/https.rb +++ b/lib/custodian/protocol-tests/https.rb @@ -81,14 +81,16 @@ class HTTPSTest end end + + # # Do we need to search for text in the body of the reply? # if ( @test_data['http_text'] ) - puts "Testing for text in the response: #{@test_data['http_text']}" if ( @test_data['verbose'] ) + puts "Testing for text in the response: '#{@test_data['http_text']}'" if ( @test_data['verbose'] ) if (! @body.match(/#{@test_data['http_text']}/i) ) - @error = "#{@error} The respond did not contain #{test_data['http_text']}" + @error = "#{@error} The response did not contain our expected text '#{test_data['http_text']}'" end end -- cgit v1.2.1