summaryrefslogtreecommitdiff
path: root/lib/chef/search
diff options
context:
space:
mode:
authorMia Henderson <mimato@users.noreply.github.com>2020-01-27 17:15:15 -0500
committerMia Henderson <mimato@users.noreply.github.com>2020-01-27 17:17:10 -0500
commit80eb6112c4baa36ecccbb780791f2ef34d2f8992 (patch)
tree7bd873c6413ac442ab9b2bbed6825b31fcdffa81 /lib/chef/search
parentc22e314ce8e9ad1b6b91125272e4e33c5ce2e35c (diff)
downloadchef-80eb6112c4baa36ecccbb780791f2ef34d2f8992.tar.gz
Fix ChefStyle
Signed-off-by: Mia Henderson <mia@pagerduty.com>
Diffstat (limited to 'lib/chef/search')
-rw-r--r--lib/chef/search/query.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/search/query.rb b/lib/chef/search/query.rb
index 4eaff0471c..e1c039b7c5 100644
--- a/lib/chef/search/query.rb
+++ b/lib/chef/search/query.rb
@@ -63,7 +63,7 @@ class Chef
args_h = hashify_args(*args)
if args_h[:fuzz]
- if [:node, 'node'].include?(type)
+ if [:node, "node"].include?(type)
query = fuzzify_node_query(query)
end
# FIXME: can i haz proper ruby-2.x named parameters someday plz?