diff options
Diffstat (limited to 'test/network/xmlrpc/processor.rb')
-rwxr-xr-x | test/network/xmlrpc/processor.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/network/xmlrpc/processor.rb b/test/network/xmlrpc/processor.rb index 97cc2a774..101d268b2 100755 --- a/test/network/xmlrpc/processor.rb +++ b/test/network/xmlrpc/processor.rb @@ -64,8 +64,7 @@ class TestXMLRPCProcessor < Test::Unit::TestCase request.expects(:handler=).with("myhandler") request.expects(:method=).with("mymethod") - # I can't get this expectation to take with the argument, for some reason. - @processor.expects(:verify) + @processor.expects(:verify).times(2) @processor.expects(:handle).with(request.call, "params", request.name, request.ip) |