summaryrefslogtreecommitdiff
path: root/spec/unit/resource/file
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2015-09-01 19:29:53 -0700
committerJohn Keiser <john@johnkeiser.com>2015-09-01 19:31:04 -0700
commita8d5109721deb5d90687f38e10bb37765a5ac65a (patch)
tree2e05374221cb5e6df5b52e6eab45af849e718929 /spec/unit/resource/file
parentb7afa0ffca2d160b3dfc5c3b1a5e714bf15e0296 (diff)
downloadchef-a8d5109721deb5d90687f38e10bb37765a5ac65a.tar.gz
Make file verification deprecation print the proper source locjk/dedup-messages
Diffstat (limited to 'spec/unit/resource/file')
-rw-r--r--spec/unit/resource/file/verification_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/resource/file/verification_spec.rb b/spec/unit/resource/file/verification_spec.rb
index 04ae9ad629..6b929789c8 100644
--- a/spec/unit/resource/file/verification_spec.rb
+++ b/spec/unit/resource/file/verification_spec.rb
@@ -88,7 +88,7 @@ describe Chef::Resource::File::Verification do
end
it "warns about deprecation when \%{file} is used" do
- expect(Chef::Log).to receive(:deprecation).with(/%{file} is deprecated/)
+ expect(Chef::Log).to receive(:deprecation).with(/%{file} is deprecated/, /verification_spec\.rb/)
test_command = platform_specific_verify_command('file')
Chef::Resource::File::Verification.new(parent_resource, test_command, {})
.verify(temp_path)