diff options
Diffstat (limited to 'worker/tests/ldap.rb')
-rwxr-xr-x | worker/tests/ldap.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/tests/ldap.rb b/worker/tests/ldap.rb index a966b6a..d89ee35 100755 --- a/worker/tests/ldap.rb +++ b/worker/tests/ldap.rb @@ -38,7 +38,7 @@ class LDAPTest # # 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 @@ -84,7 +84,7 @@ class LDAPTest # # Return the error text for why this test failed. # - def get_details + def error return @error end @@ -116,7 +116,7 @@ if __FILE__ == $0 then puts "TEST OK" else puts "TEST FAILED" - puts obj.get_details() + puts obj.error() end end |