summaryrefslogtreecommitdiff
path: root/spec/unit/mash_spec.rb
diff options
context:
space:
mode:
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!