summaryrefslogtreecommitdiff
path: root/spec/unit/run_list
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-08 09:06:54 +0000
committerVeres Lajos <vlajos@gmail.com>2014-11-08 22:15:44 +0000
commit5c489b2fb6f10e5ba39d804524d754139e0b2dc9 (patch)
treee8f17c800ea6bd1441b982f413c51f9c62e9770f /spec/unit/run_list
parent5d7f05a0436b85929a0a764807fa81b26b3d4fb8 (diff)
downloadchef-5c489b2fb6f10e5ba39d804524d754139e0b2dc9.tar.gz
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'spec/unit/run_list')
-rw-r--r--spec/unit/run_list/run_list_expansion_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/run_list/run_list_expansion_spec.rb b/spec/unit/run_list/run_list_expansion_spec.rb
index 927257875e..859219d346 100644
--- a/spec/unit/run_list/run_list_expansion_spec.rb
+++ b/spec/unit/run_list/run_list_expansion_spec.rb
@@ -97,7 +97,7 @@ describe Chef::RunList::RunListExpansion do
expect(@expansion.recipes).to eq(['lobster', 'crabrevenge', 'fist'])
end
- it "has the merged attributes from the roles with outer roles overridding inner" do
+ it "has the merged attributes from the roles with outer roles overriding inner" do
expect(@expansion.default_attrs).to eq({'foo' => 'bar'})
expect(@expansion.override_attrs).to eq({'baz' => 'qux'})
end
@@ -109,7 +109,7 @@ describe Chef::RunList::RunListExpansion do
end
- describe "after expanding a run list with a non existant role" do
+ describe "after expanding a run list with a non existent role" do
before do
allow(@expansion).to receive(:fetch_role) { @expansion.role_not_found('crabrevenge', "role[base]") }
@expansion.expand