aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/new_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string/new_spec.rb')
-rw-r--r--spec/ruby/core/string/new_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/string/new_spec.rb b/spec/ruby/core/string/new_spec.rb
index a65c6da2d1..f65daf2dd2 100644
--- a/spec/ruby/core/string/new_spec.rb
+++ b/spec/ruby/core/string/new_spec.rb
@@ -13,11 +13,9 @@ describe "String.new" do
str.encoding.should == Encoding::EUC_JP
end
- ruby_version_is "2.4" do
- it "accepts a capacity argument" do
- String.new("", capacity: 100_000).should == ""
- String.new("abc", capacity: 100_000).should == "abc"
- end
+ it "accepts a capacity argument" do
+ String.new("", capacity: 100_000).should == ""
+ String.new("abc", capacity: 100_000).should == "abc"
end
it "returns a fully-formed String" do