Fix predicate to assert if object is same

This commit is contained in:
Nobuyoshi Nakada 2019-06-29 21:45:59 +09:00
Родитель cbb7dc21a8
Коммит 9f648262f9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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