From aed5a83f2dc728989474aae16e6a2ef43b7aff77 Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 4 Jan 2016 01:50:44 -0500 Subject: [PATCH] Grammatical mistake,Changed character from "an" to "a" in below files: swiftinit_spec.rb line 37,41,45,49,53: it "should have an" should be it "should have a" Change-Id: I473729a1aa24ce302b2ea437e2f8163561df07b5 --- spec/unit/puppet/provider/service/swiftinit_spec.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/unit/puppet/provider/service/swiftinit_spec.rb b/spec/unit/puppet/provider/service/swiftinit_spec.rb index 53565246..f2796532 100644 --- a/spec/unit/puppet/provider/service/swiftinit_spec.rb +++ b/spec/unit/puppet/provider/service/swiftinit_spec.rb @@ -34,23 +34,23 @@ describe provider_class do end - it "should have an status method" do + it "should have a status method" do expect(@provider).to respond_to(:status) end - it "should have an start method" do + it "should have a start method" do expect(@provider).to respond_to(:start) end - it "should have an stop method" do + it "should have a stop method" do expect(@provider).to respond_to(:stop) end - it "should have an restart method" do + it "should have a restart method" do expect(@provider).to respond_to(:restart) end - it "should have an refresh method" do + it "should have a refresh method" do expect(@provider).to respond_to(:refresh) end