summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/provider/service/openbsd_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/provider/service/openbsd_service_spec.rb b/spec/unit/provider/service/openbsd_service_spec.rb
index 59150930d6..1b5206470e 100644
--- a/spec/unit/provider/service/openbsd_service_spec.rb
+++ b/spec/unit/provider/service/openbsd_service_spec.rb
@@ -285,7 +285,7 @@ describe Chef::Provider::Service::Openbsd do
provider.start_service()
end
- it "should call '/usr/local/etc/rc.d/service_name faststart' if no start command is specified" do
+ it "should call '/usr/local/etc/rc.d/service_name start' if no start command is specified" do
expect(provider).to receive(:shell_out_with_systems_locale!).with("/etc/rc.d/#{new_resource.service_name} start")
provider.start_service()
end
@@ -298,7 +298,7 @@ describe Chef::Provider::Service::Openbsd do
provider.stop_service()
end
- it "should call '/usr/local/etc/rc.d/service_name faststop' if no stop command is specified" do
+ it "should call '/usr/local/etc/rc.d/service_name stop' if no stop command is specified" do
expect(provider).to receive(:shell_out_with_systems_locale!).with("/etc/rc.d/#{new_resource.service_name} stop")
provider.stop_service()
end