aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/delete_suffix_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/delete_suffix_spec.rb')
-rw-r--r--spec/ruby/core/string/delete_suffix_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/delete_suffix_spec.rb b/spec/ruby/core/string/delete_suffix_spec.rb
index d5b6880193..dbb5f9df9e 100644
--- a/spec/ruby/core/string/delete_suffix_spec.rb
+++ b/spec/ruby/core/string/delete_suffix_spec.rb
@@ -23,8 +23,8 @@ describe "String#delete_suffix" do
ruby_version_is ''...'2.7' do
it "taints resulting strings when other is tainted" do
- 'hello'.taint.delete_suffix('ello').tainted?.should == true
- 'hello'.taint.delete_suffix('').tainted?.should == true
+ 'hello'.taint.delete_suffix('ello').should.tainted?
+ 'hello'.taint.delete_suffix('').should.tainted?
end
end