Skip to content

Commit 54b88b7

Browse files
authored
Merge pull request #42 from paran1/rubocop
fix rubocop
2 parents a18d41b + 8e355fb commit 54b88b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/puppet-lint/plugins/check_strict_indent_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
PuppetLint.configuration.checks.reject do |check|
77
check == :indent
88
end.each do |check|
9-
PuppetLint.configuration.send("disable_#{check}")
9+
PuppetLint.configuration.send(:"disable_#{check}")
1010
end
1111
end
1212

@@ -15,7 +15,7 @@
1515
PuppetLint.configuration.checks.reject do |check|
1616
check == :indent
1717
end.each do |check|
18-
PuppetLint.configuration.send("enable_#{check}")
18+
PuppetLint.configuration.send(:"enable_#{check}")
1919
end
2020
end
2121

0 commit comments

Comments
 (0)