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
This commit is contained in:
Alan
2016-01-04 01:50:44 -05:00
parent 90a3744af9
commit aed5a83f2d

View File

@@ -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