aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/text_helper_test.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-08-19 08:12:05 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-08-19 08:16:21 +0900
commitb2c1e29c14b91b290b30c928c63253d1555e0fd9 (patch)
tree17b4573dbc9c4d4591985b45c0af3c9701666be6 /actionview/test/template/text_helper_test.rb
parent9270c6d7fc09b3a1fbbb410f60b9d3829a406c07 (diff)
downloadrails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.gz
rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.bz2
rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.zip
Enable Style/ParenthesesAroundCondition cop
To prevent style check in review like https://github.com/rails/rails/pull/33608#discussion_r211087605.
Diffstat (limited to 'actionview/test/template/text_helper_test.rb')
-rw-r--r--actionview/test/template/text_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/text_helper_test.rb b/actionview/test/template/text_helper_test.rb
index 45edfe18be..4d47706bda 100644
--- a/actionview/test/template/text_helper_test.rb
+++ b/actionview/test/template/text_helper_test.rb
@@ -9,7 +9,7 @@ class TextHelperTest < ActionView::TestCase
super
# This simulates the fact that instance variables are reset every time
# a view is rendered. The cycle helper depends on this behavior.
- @_cycles = nil if (defined? @_cycles)
+ @_cycles = nil if defined?(@_cycles)
end
def test_concat