Skip to content

Commit 4efe068

Browse files
committed
Fix should.equal? to should equal.
1 parent 0dbbe9b commit 4efe068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ruby/optional/capi/string_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ def inspect
888888
it "returns the source string if it can not be converted" do
889889
source = ["00ff"].pack("H*");
890890
result = @s.rb_str_export_to_enc(source, Encoding::UTF_8)
891-
result.should.equal?(source)
891+
result.should equal(source)
892892
end
893893

894894
it "does not alter the source string if it can not be converted" do

0 commit comments

Comments
 (0)