diff options
| author | Benoit Daloze <eregontp@gmail.com> | 2020-09-15 21:54:31 +0200 |
|---|---|---|
| committer | Benoit Daloze <eregontp@gmail.com> | 2020-09-15 21:56:00 +0200 |
| commit | 1af0319fc88688bc5dd5e49eecdb8b534ead9991 (patch) | |
| tree | 352b35490e64bc961dc005d679392106d6be90b9 /spec/ruby/language/send_spec.rb | |
| parent | 9b535f3ff7c2f48e34dd44564df7adc723b81276 (diff) | |
2.8 -> 3.0 in specs
Diffstat (limited to 'spec/ruby/language/send_spec.rb')
| -rw-r--r-- | spec/ruby/language/send_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/language/send_spec.rb b/spec/ruby/language/send_spec.rb index 17381166dc..e57e2c65dc 100644 --- a/spec/ruby/language/send_spec.rb +++ b/spec/ruby/language/send_spec.rb @@ -421,7 +421,7 @@ describe "Invoking a method" do specs.rest_len(0,*a,4,*5,6,7,*c,-1).should == 11 end - ruby_version_is ""..."2.8" do + ruby_version_is ""..."3.0" do it "expands the Array elements from the splat after executing the arguments and block if no other arguments follow the splat" do def self.m(*args, &block) [args, block] @@ -437,7 +437,7 @@ describe "Invoking a method" do end end - ruby_version_is "2.8" do + ruby_version_is "3.0" do it "expands the Array elements from the splat before applying block argument operations" do def self.m(*args, &block) [args, block] |
