We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18d41b commit 8e355fbCopy full SHA for 8e355fb
spec/puppet-lint/plugins/check_strict_indent_spec.rb
@@ -6,7 +6,7 @@
6
PuppetLint.configuration.checks.reject do |check|
7
check == :indent
8
end.each do |check|
9
- PuppetLint.configuration.send("disable_#{check}")
+ PuppetLint.configuration.send(:"disable_#{check}")
10
end
11
12
@@ -15,7 +15,7 @@
15
16
17
18
- PuppetLint.configuration.send("enable_#{check}")
+ PuppetLint.configuration.send(:"enable_#{check}")
19
20
21
0 commit comments