summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-10-19 17:11:38 +0100
committerTim Smith <tsmith@chef.io>2016-10-19 17:11:38 +0100
commit3c5a497734a4a989bdaea58a0c8e9aa88f86ba93 (patch)
tree9829912c402c25bf40bc527e0a81ef7d3d6a8a97
parent9965f280523f0cf467906615dc90d416a3621a57 (diff)
downloadchef-3c5a497734a4a989bdaea58a0c8e9aa88f86ba93.tar.gz
Fix spec typo
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--spec/unit/resource/apt_repository_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/resource/apt_repository_spec.rb b/spec/unit/resource/apt_repository_spec.rb
index 0b0c0c5d26..69cf94ae56 100644
--- a/spec/unit/resource/apt_repository_spec.rb
+++ b/spec/unit/resource/apt_repository_spec.rb
@@ -24,7 +24,7 @@ describe Chef::Resource::AptRepository do
let(:run_context) { Chef::RunContext.new(node, {}, events) }
let(:resource) { Chef::Resource::AptRepository.new("multiverse", run_context) }
- it "should create a new Chef::Resource::AptUpdate" do
+ it "should create a new Chef::Resource::AptRepository" do
expect(resource).to be_a_kind_of(Chef::Resource)
expect(resource).to be_a_kind_of(Chef::Resource::AptRepository)
end