summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Danna <steve@opscode.com>2015-01-19 09:11:05 +0000
committerSteven Danna <steve@opscode.com>2015-01-27 08:59:08 +0000
commite53f9878f4c1520130936624fb0fc456baf19f4c (patch)
tree9d7987ab105cb9d46e603948c283f42138289471
parent0bfac499e8e5c82104426eff0d14ab485bfc0b20 (diff)
downloadchef-e53f9878f4c1520130936624fb0fc456baf19f4c.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