summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/tr_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/tr_spec.rb')
-rw-r--r--spec/ruby/core/string/tr_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/string/tr_spec.rb b/spec/ruby/core/string/tr_spec.rb
index 0e4da398d5..212d06f679 100644
--- a/spec/ruby/core/string/tr_spec.rb
+++ b/spec/ruby/core/string/tr_spec.rb
@@ -66,10 +66,10 @@ describe "String#tr" do
["h", "hello"].each do |str|
tainted_str = str.dup.taint
- tainted_str.tr("e", "a").tainted?.should == true
+ tainted_str.tr("e", "a").should.tainted?
- str.tr("e".taint, "a").tainted?.should == false
- str.tr("e", "a".taint).tainted?.should == false
+ str.tr("e".taint, "a").should_not.tainted?
+ str.tr("e", "a".taint).should_not.tainted?
end
end
end