Skip to content

Commit 8e355fb

Browse files
author
Pär Lindfors
committed
fix rubocop
Fix Performance/StringIdentifierArgument
1 parent a18d41b commit 8e355fb

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)