summaryrefslogtreecommitdiff
path: root/spec/unit/mash_spec.rb
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2013-10-17 15:28:23 -0700
committersersut <serdar@opscode.com>2013-10-17 15:28:23 -0700
commit180e9c1ec6cc324c598b3575a6ba2a209df44a24 (patch)
tree09bfce4f8c4e8f29a7c6c740f7ed86cec11d5737 /spec/unit/mash_spec.rb
parentc995e37339f37be82d7e5b1b7866bef64c1bd05a (diff)
parent05ba3e301794bd09173c5c3f13a62c2530d8b403 (diff)
downloadchef-180e9c1ec6cc324c598b3575a6ba2a209df44a24.tar.gz
Merge branch 'master' into 11-stable
Diffstat (limited to 'spec/unit/mash_spec.rb')
-rw-r--r--spec/unit/mash_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/mash_spec.rb b/spec/unit/mash_spec.rb
index b9a7cd0932..7358781e60 100644
--- a/spec/unit/mash_spec.rb
+++ b/spec/unit/mash_spec.rb
@@ -35,7 +35,7 @@ describe Mash do
@copy = @orig.dup
@copy.to_hash.should == Mash.new(data).to_hash
@copy[:z] << 4
- @orig[:z].should == [1,2,3]
+ @orig[:z].should == [1,2,3]
end
it "should duplicate a nested mash to a new mash" do
@@ -44,7 +44,7 @@ describe Mash do
@copy = @orig.dup
@copy.to_hash.should == Mash.new(data).to_hash
@copy[:z][:a] << 4
- @orig[:z][:a].should == [1,2,3]
+ @orig[:z][:a].should == [1,2,3]
end
# add more!