Skip to content

Use __send__ instead of send

Created by: richardplatel

RSpec::Core::OutputWrapper uses send to call class methods on IO objects, but some IO objects (e.g. TCPSocket) redefine send. Use the equivalent __send__ method instead.

https://apidock.com/ruby/BasicObject/send

Merge request reports