From 1f3d76707da068ffce4a6d83fb87d66a35e5f525 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Tue, 26 Dec 2023 01:58:46 +0100 Subject: [PATCH] Fix Rubocop offenses --- lib/runner/connection.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runner/connection.rb b/lib/runner/connection.rb index 5f39f3d6..e60055d9 100644 --- a/lib/runner/connection.rb +++ b/lib/runner/connection.rb @@ -132,7 +132,7 @@ class Runner::Connection event = event.deep_symbolize_keys message_type = event[:type].to_sym if WEBSOCKET_MESSAGE_TYPES.include?(message_type) - __send__("handle_#{message_type}", event) + __send__(:"handle_#{message_type}", event) else @error = Runner::Error::UnexpectedResponse.new("Unknown WebSocket message type: #{message_type}") close(:error)