Skip to content

Commit ac27a95

Browse files
committed
Fix rubocop errors
1 parent 81015c7 commit ac27a95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.rubocop_todo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Metrics/MethodLength:
105105
# Offense count: 2
106106
# Configuration parameters: CountComments.
107107
Metrics/ModuleLength:
108-
Max: 516
108+
Max: 517
109109

110110
# Offense count: 7
111111
Metrics/PerceivedComplexity:

spec/spec_helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
require 'codeclimate-test-reporter'
33
require 'simplecov'
44

5-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
5+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
66
Coveralls::SimpleCov::Formatter,
77
SimpleCov::Formatter::HTMLFormatter,
88
CodeClimate::TestReporter::Formatter
9-
]
9+
])
1010

1111
SimpleCov.start
1212

0 commit comments

Comments
 (0)