We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0947e13 commit cda29bdCopy full SHA for cda29bd
1 file changed
test/test_parser.rb
@@ -60,10 +60,10 @@ def test_parseMethodCall
60
61
def test_fault
62
flag, fault = @p.parseMethodResponse(@fault_doc)
63
- assert_equal(flag, false)
64
- assert_kind_of(XMLRPC::FaultException, fault, "must be an instance of class XMLRPC::FaultException")
65
- assert_equal(fault.faultCode, 4)
66
- assert_equal(fault.faultString, "an error message")
+ assert_equal(flag, false)
+ assert_kind_of(XMLRPC::FaultException, fault, "must be an instance of class XMLRPC::FaultException")
+ assert_equal(fault.faultCode, 4)
+ assert_equal(fault.faultString, "an error message")
67
end
68
69
def test_fault_message
0 commit comments