summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Danna <steve@opscode.com>2015-01-19 09:11:05 +0000
committerBryan McLellan <btm@opscode.com>2015-02-17 08:46:37 -0500
commit07e843a58fdfd730c3874f484bdb1eee3dde7f82 (patch)
tree145e6f992af44056d7d828006cbe9cc97cd3f6e5
parentb497289183b6696f5da838274e57c08fbd6c4872 (diff)
downloadchef-07e843a58fdfd730c3874f484bdb1eee3dde7f82.tar.gz
Change @user_verifications to @verifications
-rw-r--r--lib/chef/resource/file.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/file.rb b/lib/chef/resource/file.rb
index 7662731f44..53a6a160af 100644
--- a/lib/chef/resource/file.rb
+++ b/lib/chef/resource/file.rb
@@ -51,7 +51,7 @@ class Chef
@force_unlink = false
@manage_symlink_source = nil
@diff = nil
- @user_verifications = []
+ @verifications = []
end
def content(arg=nil)
@@ -124,9 +124,9 @@ class Chef
end
if command || block_given?
- @user_verifications << Verification.new(self, command, opts, &block)
+ @verifications << Verification.new(self, command, opts, &block)
else
- @user_verifications
+ @verifications
end
end
end