Skip to content

Commit edf889f

Browse files
committed
Fix rubocop issue
1 parent ed87d9a commit edf889f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ Naming/RescuedExceptionsVariableName:
8686

8787
Metrics/BlockLength:
8888
Exclude:
89-
- 'test/**/*_test.rb'
89+
- 'test/**/*_test.rb'

test/react/rails/component_mount_test.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
require "test_helper"
44

5+
# rubocop:disable Metrics/ClassLength
56
class ComponentMountTest < ActionDispatch::IntegrationTest
67
module DummyRenderer
78
def self.render(component_name, props, _prerender_options)
@@ -216,3 +217,4 @@ def self.react_rails_prerenderer
216217
end
217218
end
218219
end
220+
# rubocop:enable Metrics/ClassLength

0 commit comments

Comments
 (0)