1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix predicate to assert if object is same

This commit is contained in:
Nobuyoshi Nakada 2019-06-29 19:17:51 +09:00
parent 792d1deb94
commit cbb7dc21a8
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -58,7 +58,7 @@ with_feature :ancillary_data, :ipv6_pktinfo do
end end
it 'is not the same object as the input Addrinfo' do it 'is not the same object as the input Addrinfo' do
@addr.should_not == @source @addr.should_not.equal? @source
end end
end end