aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/shared/to_s.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/shared/to_s.rb')
-rw-r--r--spec/ruby/core/string/shared/to_s.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/shared/to_s.rb b/spec/ruby/core/string/shared/to_s.rb
index 36283be4d0..b8c9b8ab44 100644
--- a/spec/ruby/core/string/shared/to_s.rb
+++ b/spec/ruby/core/string/shared/to_s.rb
@@ -13,8 +13,8 @@ describe :string_to_s, shared: true do
ruby_version_is ''...'2.7' do
it "taints the result when self is tainted" do
- "x".taint.send(@method).tainted?.should == true
- StringSpecs::MyString.new("x").taint.send(@method).tainted?.should == true
+ "x".taint.send(@method).should.tainted?
+ StringSpecs::MyString.new("x").taint.send(@method).should.tainted?
end
end
end