summaryrefslogtreecommitdiff
path: root/spec/unit/util/dsc/resource_store.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/util/dsc/resource_store.rb')
-rw-r--r--spec/unit/util/dsc/resource_store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/util/dsc/resource_store.rb b/spec/unit/util/dsc/resource_store.rb
index a864a2c1da..a91b10d3c0 100644
--- a/spec/unit/util/dsc/resource_store.rb
+++ b/spec/unit/util/dsc/resource_store.rb
@@ -55,7 +55,7 @@ describe Chef::Util::DSC::ResourceStore do
expect(resource_store.find("foo")).to eql([resource_a])
end
- it "returns multiple resoures if they are found" do
+ it "returns multiple resources if they are found" do
expect(resource_store).to receive(:query_resource).and_return([resource_a, resource_b])
expect(resource_store.find("foo")).to include(resource_a, resource_b)
end