Skip to content

Commit

Permalink
Adding a missing 'should'
Browse files Browse the repository at this point in the history
Closes #3248
  • Loading branch information
jc00ke committed Dec 21, 2014
1 parent 92dab39 commit d608aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ruby/core/array/transpose_spec.rb
Expand Up @@ -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
Expand Down

0 comments on commit d608aff

Please sign in to comment.