diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-13 13:08:35 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-13 13:08:35 +0000 |
commit | ab876665a2cf25b1bf557ea7d6cd9ff7e7923db6 (patch) | |
tree | 6b6affb2de6d84f3935a5cf5d6b2ce59f846830e /worker/tests/ssh.rb | |
parent | 37b701fc0c7002e2d84f2d61bd9c57085c8b9542 (diff) |
Renamed 'get_details()' to 'error()'.
Diffstat (limited to 'worker/tests/ssh.rb')
-rwxr-xr-x | worker/tests/ssh.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/tests/ssh.rb b/worker/tests/ssh.rb index 9fd2277..9f15860 100755 --- a/worker/tests/ssh.rb +++ b/worker/tests/ssh.rb @@ -37,7 +37,7 @@ class SSHTest # # 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 @error = "" @@ -88,7 +88,7 @@ class SSHTest # # Return the error text for why this test failed. # - def get_details + def error return @error end @@ -120,7 +120,7 @@ if __FILE__ == $0 then puts "TEST OK" else puts "TEST FAILED" - puts obj.get_details() + puts obj.error() end end |