summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-10-21 09:25:53 -0700
committerGitHub <noreply@github.com>2016-10-21 09:25:53 -0700
commita504bb2a2b1f24e1a50b84f7e83cc284f443db56 (patch)
tree2c50c5bf9b4ed0b8c78f77d91a2c1f16a6c269e0
parentda7d2b341ca5caf6ea64e84917e28d5b0e4b7f5c (diff)
parent3c5a497734a4a989bdaea58a0c8e9aa88f86ba93 (diff)
downloadchef-a504bb2a2b1f24e1a50b84f7e83cc284f443db56.tar.gz
Merge pull request #5475 from tas50/spec_typo
Fix a typo in the apt_repository spec
-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