summaryrefslogtreecommitdiff
path: root/spec/functional
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-12-06 13:25:48 -0800
committerTim Smith <tsmith@chef.io>2017-12-06 20:00:00 -0800
commit988263fddb8e077fc6acc21a9a45fd47b0f5fb60 (patch)
tree641b647098fa2e14a2e197a03ac86fcafa69118c /spec/functional
parent804d61eecefd9b9d87e42f5cde5386be511a044b (diff)
downloadchef-988263fddb8e077fc6acc21a9a45fd47b0f5fb60.tar.gz
Clarify that we're talking about the 1 and only SYSTEM user here
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/functional')
-rw-r--r--spec/functional/resource/windows_task_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functional/resource/windows_task_spec.rb b/spec/functional/resource/windows_task_spec.rb
index aeefd63bc5..b59f0670b6 100644
--- a/spec/functional/resource/windows_task_spec.rb
+++ b/spec/functional/resource/windows_task_spec.rb
@@ -339,7 +339,7 @@ describe Chef::Resource::WindowsTask, :windows_only do
it "raises error" do
subject.user "Administrator"
subject.frequency :onstart
- expect { subject.after_created }.to raise_error("Can't specify a non-system user without a password!")
+ expect { subject.after_created }.to raise_error("Cannot specify a user other than the 'SYSTEM' user without specifying a password!")
end
end