Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ruby/core/array/transpose_spec.rb
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@

a = [1]; a << a
b = [2]; b << b
[a, b].transpose == [ [1, 2], [a, b] ]
[a, b].transpose.should == [ [1, 2], [a, b] ]
end

it "raises a TypeError if the passed Argument does not respond to #to_ary" do

0 comments on commit d608aff

Please sign in to comment.