aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/reverse_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/reverse_spec.rb')
-rw-r--r--spec/ruby/core/string/reverse_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/reverse_spec.rb b/spec/ruby/core/string/reverse_spec.rb
index 30d5385c83..cf4956a528 100644
--- a/spec/ruby/core/string/reverse_spec.rb
+++ b/spec/ruby/core/string/reverse_spec.rb
@@ -12,8 +12,8 @@ describe "String#reverse" do
ruby_version_is ''...'2.7' do
it "taints the result if self is tainted" do
- "".taint.reverse.tainted?.should == true
- "m".taint.reverse.tainted?.should == true
+ "".taint.reverse.should.tainted?
+ "m".taint.reverse.should.tainted?
end
end