summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-11-03 18:05:22 -0800
committerClaire McQuin <claire@getchef.com>2014-11-03 18:05:22 -0800
commit253c21d6bfafcbbc66e93d90ea072b42a01ddc5c (patch)
tree298f94093035f1718179788a1bc6bead7499b7d5
parent461d5221d9fd78c2748ac74e8fe175e632307ad6 (diff)
downloadchef-253c21d6bfafcbbc66e93d90ea072b42a01ddc5c.tar.gz
Fix typo
-rw-r--r--lib/chef/audit/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/audit/runner.rb b/lib/chef/audit/runner.rb
index baf4520466..e3699266b8 100644
--- a/lib/chef/audit/runner.rb
+++ b/lib/chef/audit/runner.rb
@@ -85,7 +85,7 @@ class Chef
# Register each controls group with the world, which will handle
# the ordering of the audits that will be run.
def register_controls_groups
- run_context.controls_groups.each { |ctls_grp| world.register(ctls_grp) }
+ @run_context.controls_groups.each { |ctls_grp| world.register(ctls_grp) }
end
end