spec/tty/table/field/equality_spec.rb in tty-0.1.0 vs spec/tty/table/field/equality_spec.rb in tty-0.1.1
- old
+ new
@@ -29,10 +29,10 @@
end
context 'with an equivalent object of subclass' do
let(:other) { Class.new(described_class).new(value) }
- it { is_expected.to eql(false) }
+ it { is_expected.to eq(true) }
it 'is symmetric' do
is_expected.not_to eql(other == object)
end
end