summaryrefslogtreecommitdiff
path: root/spec/unit/provider/package/portage_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/provider/package/portage_spec.rb')
-rw-r--r--spec/unit/provider/package/portage_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/provider/package/portage_spec.rb b/spec/unit/provider/package/portage_spec.rb
index bc7ad22854..8fdd7f877a 100644
--- a/spec/unit/provider/package/portage_spec.rb
+++ b/spec/unit/provider/package/portage_spec.rb
@@ -118,13 +118,13 @@ describe Chef::Provider::Package::Portage, "load_current_resource" do
expect { @provider.candidate_version }.to raise_error(Chef::Exceptions::Package)
end
- it "should find the candidate_version if a category is specifed and there are no duplicates" do
+ it "should find the candidate_version if a category is specified and there are no duplicates" do
status = double(stdout: "dev-vcs/git-2.16.2", exitstatus: 0)
expect(@provider).to receive(:shell_out_compacted).and_return(status)
expect(@provider.candidate_version).to eq("2.16.2")
end
- it "should find the candidate_version if a category is not specifed and there are no duplicates" do
+ it "should find the candidate_version if a category is not specified and there are no duplicates" do
status = double(stdout: "dev-vcs/git-2.16.2", exitstatus: 0)
@provider = Chef::Provider::Package::Portage.new(@new_resource_without_category, @run_context)
expect(@provider).to receive(:shell_out_compacted).and_return(status)