Copilot commented on code in PR #3723:
URL: https://github.com/apache/thrift/pull/3723#discussion_r3792575067


##########
test/rb/integration/TestClient.rb:
##########
@@ -431,6 +431,6 @@ def test_oneway
     time1 = Time.now.to_f
     @client.testOneway(1)
     time2 = Time.now.to_f
-    assert_operator (time2-time1), :<, 0.1
+    assert_operator (time2 - time1), :<, 0.1

Review Comment:
   This call still has a space between the method name and the opening 
parenthesis (`assert_operator ( ... )`), which violates the newly-enabled 
`Layout/SpaceAfterMethodName` (and typically `Layout/SpaceBeforeFirstArg`) in 
`lib/rb/.rubocop.yml`. This will likely fail RuboCop/style checks.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to