diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2014-11-19 11:24:49 -0800 |
---|---|---|
committer | Serdar Sutay <serdar@opscode.com> | 2014-11-19 15:42:31 -0800 |
commit | 892707928ec83004b48e9ab9231714132471e477 (patch) | |
tree | 19d3653d9b8598b2953d6ac8ed9b3e0877110e5e /spec/unit/node | |
parent | b44006c690388d78de641fce80b6f819857d92b1 (diff) | |
download | chef-892707928ec83004b48e9ab9231714132471e477.tar.gz |
typo fix in specs
Diffstat (limited to 'spec/unit/node')
-rw-r--r-- | spec/unit/node/attribute_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/node/attribute_spec.rb b/spec/unit/node/attribute_spec.rb index 008fef4a3e..39e40a465f 100644 --- a/spec/unit/node/attribute_spec.rb +++ b/spec/unit/node/attribute_spec.rb @@ -1150,7 +1150,7 @@ describe Chef::Node::Attribute do @attributes.role_default = { "arglebargle" => { "fizz" => "buzz" } } expect(@attributes.merged_attributes[:arglebargle]).to eq({ "foo" => "bar", "fizz" => "buzz" }) expect(@attributes.default[:arglebargle]).to eq({ "foo" => "bar" }) - expect(@attributes.role_efault[:arglebargle]).to eq({ "fizz" => "buzz" }) + expect(@attributes.role_default[:arglebargle]).to eq({ "fizz" => "buzz" }) end it "correctly deep merges arrays, and preserves the original contents when merging default and role_default" do |