summaryrefslogtreecommitdiff
path: root/spec/ruby/language/yield_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/yield_spec.rb')
-rw-r--r--spec/ruby/language/yield_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/yield_spec.rb b/spec/ruby/language/yield_spec.rb
index a3cf5b20d5..8a2aa81819 100644
--- a/spec/ruby/language/yield_spec.rb
+++ b/spec/ruby/language/yield_spec.rb
@@ -69,7 +69,7 @@ describe "The yield call" do
}.should raise_error(ArgumentError)
end
- ruby_bug "#12705", "2.2"..."2.5" do
+ ruby_bug "#12705", ""..."2.5" do
it "should not destructure an Array into multiple arguments" do
lambda {
@y.s([1, 2], &lambda { |a,b| [a,b] })