summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/reopen_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2020-09-15 21:54:31 +0200
committerBenoit Daloze <[email protected]>2020-09-15 21:56:00 +0200
commit1af0319fc88688bc5dd5e49eecdb8b534ead9991 (patch)
tree352b35490e64bc961dc005d679392106d6be90b9 /spec/ruby/library/stringio/reopen_spec.rb
parent9b535f3ff7c2f48e34dd44564df7adc723b81276 (diff)
2.8 -> 3.0 in specs
Diffstat (limited to 'spec/ruby/library/stringio/reopen_spec.rb')
-rw-r--r--spec/ruby/library/stringio/reopen_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/library/stringio/reopen_spec.rb b/spec/ruby/library/stringio/reopen_spec.rb
index 9943978377..6752cf9970 100644
--- a/spec/ruby/library/stringio/reopen_spec.rb
+++ b/spec/ruby/library/stringio/reopen_spec.rb
@@ -23,7 +23,7 @@ describe "StringIO#reopen when passed [Object, Integer]" do
@io.string.should == "reopened, another time"
end
- ruby_version_is ""..."2.8" do
+ ruby_version_is ""..."3.0" do
# NOTE: WEIRD!
it "does not taint self when the passed Object was tainted" do
@io.reopen("reopened".taint, IO::RDONLY)
@@ -92,7 +92,7 @@ describe "StringIO#reopen when passed [Object, Object]" do
str.should == ""
end
- ruby_version_is ""..."2.8" do
+ ruby_version_is ""..."3.0" do
# NOTE: WEIRD!
it "does not taint self when the passed Object was tainted" do
@io.reopen("reopened".taint, "r")
@@ -164,7 +164,7 @@ describe "StringIO#reopen when passed [String]" do
@io.string.should == "reopened"
end
- ruby_version_is ""..."2.8" do
+ ruby_version_is ""..."3.0" do
# NOTE: WEIRD!
it "does not taint self when the passed Object was tainted" do
@io.reopen("reopened".taint)