summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorScott Bonds <scott@ggr.com>2014-11-04 17:17:59 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2015-01-25 10:43:21 -0800
commite619e3ab12138913868df970a712200142a14dcd (patch)
treeb623b3b3c11a8f6e4839d2ba9071229bdf222fca /spec
parent4c28c391bf00332739122393009c018a680fc55a (diff)
downloadchef-e619e3ab12138913868df970a712200142a14dcd.tar.gz
fix a couple typos in the tests
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