summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-06-08 09:34:29 -0700
committerGitHub <noreply@github.com>2020-06-08 09:34:29 -0700
commit57c3335aeefbd52e61bfeda81d4e0f5f91c20ecf (patch)
tree102ef9da4b003c0347c0e351d2536cbe90568ecf /spec/unit
parent348ca883838d3f55d21893cf163af1aa3d37c967 (diff)
parent51180160fa9e9dce671d755abcbeb33c4c24879f (diff)
downloadchef-57c3335aeefbd52e61bfeda81d4e0f5f91c20ecf.tar.gz
Merge pull request #9952 from chef/Snehal/Github-#333_knife_vault_on_windows_10_fails
knife vault on windows 10 fails due to ERROR: Chef::Exceptions::InvalidDataBagPath
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/data_bag_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/data_bag_spec.rb b/spec/unit/data_bag_spec.rb
index 6089b4b85d..7e5ef46d58 100644
--- a/spec/unit/data_bag_spec.rb
+++ b/spec/unit/data_bag_spec.rb
@@ -243,7 +243,7 @@ describe Chef::DataBag do
expect do
Chef::DataBag.load("foo")
- end.to raise_error Chef::Exceptions::InvalidDataBagPath, "Data bag path '/var/chef/data_bags' is invalid"
+ end.to raise_error Chef::Exceptions::InvalidDataBagPath, "Data bag path '/var/chef/data_bags' not found. Please create this directory."
end
end