aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/insert_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/insert_spec.rb')
-rw-r--r--spec/ruby/core/string/insert_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/string/insert_spec.rb b/spec/ruby/core/string/insert_spec.rb
index b26845419f..752cbb2f37 100644
--- a/spec/ruby/core/string/insert_spec.rb
+++ b/spec/ruby/core/string/insert_spec.rb
@@ -44,12 +44,12 @@ describe "String#insert with index, other" do
ruby_version_is ''...'2.7' do
it "taints self if string to insert is tainted" do
str = "abcd"
- str.insert(0, "T".taint).tainted?.should == true
+ str.insert(0, "T".taint).should.tainted?
str = "abcd"
other = mock('T')
def other.to_str() "T".taint end
- str.insert(0, other).tainted?.should == true
+ str.insert(0, other).should.tainted?
end
end