diff options
Diffstat (limited to 'worker/tests/https.rb')
-rwxr-xr-x | worker/tests/https.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/tests/https.rb b/worker/tests/https.rb index f487b1d..77739d1 100755 --- a/worker/tests/https.rb +++ b/worker/tests/https.rb @@ -36,7 +36,7 @@ class HTTPSTest # # Return "false" on failure. # - # If the test fails the details should be retrieved from "get_details". + # If the test fails the details should be retrieved from "error()". # def run_test @@ -92,7 +92,7 @@ class HTTPSTest # # Return the error text for why this test failed. # - def get_details + def error return @error end @@ -172,7 +172,7 @@ if __FILE__ == $0 then puts "TEST OK" else puts "TEST FAILED" - puts http.get_details() + puts http.error() end end |