aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/element_set_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/element_set_spec.rb')
-rw-r--r--spec/ruby/core/string/element_set_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/string/element_set_spec.rb b/spec/ruby/core/string/element_set_spec.rb
index e375b4570e..641d46bc91 100644
--- a/spec/ruby/core/string/element_set_spec.rb
+++ b/spec/ruby/core/string/element_set_spec.rb
@@ -18,11 +18,11 @@ describe "String#[]= with Fixnum index" do
it "taints self if other_str is tainted" do
a = "hello"
a[0] = "".taint
- a.tainted?.should == true
+ a.should.tainted?
a = "hello"
a[0] = "x".taint
- a.tainted?.should == true
+ a.should.tainted?
end
end
@@ -491,11 +491,11 @@ describe "String#[]= with Fixnum index, count" do
it "taints self if other_str is tainted" do
a = "hello"
a[0, 0] = "".taint
- a.tainted?.should == true
+ a.should.tainted?
a = "hello"
a[1, 4] = "x".taint
- a.tainted?.should == true
+ a.should.tainted?
end
end