From 464e55f1d0296c3593157a89159f75d58397a1f5 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Sat, 1 Jun 2019 15:20:21 +0300 Subject: Ignore warnings about argument prefix with operator symbol. --- test/-ext-/iter/test_yield_block.rb | 2 +- test/ruby/test_lazy_enumerator.rb | 4 ++-- test/ruby/test_refinement.rb | 14 +++++++------- 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'test') diff --git a/test/-ext-/iter/test_yield_block.rb b/test/-ext-/iter/test_yield_block.rb index 0036854fd4..c03a8ee370 100644 --- a/test/-ext-/iter/test_yield_block.rb +++ b/test/-ext-/iter/test_yield_block.rb @@ -16,7 +16,7 @@ class TestIter::YieldBlock < Test::Unit::TestCase block.call {} end def call_lambda(&block) - block.call &->{} + block.call(&->{}) end end diff --git a/test/ruby/test_lazy_enumerator.rb b/test/ruby/test_lazy_enumerator.rb index 03371c912a..d42c8d3261 100644 --- a/test/ruby/test_lazy_enumerator.rb +++ b/test/ruby/test_lazy_enumerator.rb @@ -17,9 +17,9 @@ class TestLazyEnumerator < Test::Unit::TestCase @enum.each do |v| @current = v if v.is_a? Enumerable - yield *v + yield(*v) else - yield v + yield(v) end end end diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb index 49bf907302..8908d353a5 100644 --- a/test/ruby/test_refinement.rb +++ b/test/ruby/test_refinement.rb @@ -2096,7 +2096,7 @@ class TestRefinement < Test::Unit::TestCase end } def call - ToProc.call &self + ToProc.call(&self) end end @@ -2111,7 +2111,7 @@ class TestRefinement < Test::Unit::TestCase } def call - ToProc.call &self + ToProc.call(&self) end end @@ -2127,14 +2127,14 @@ class TestRefinement < Test::Unit::TestCase } def call - ToProc.call &self + ToProc.call(&self) end end class NonProc def call - ToProc.call &self + ToProc.call(&self) end end @@ -2144,7 +2144,7 @@ class TestRefinement < Test::Unit::TestCase end def call - ToProc.call &self + ToProc.call(&self) end end @@ -2163,7 +2163,7 @@ class TestRefinement < Test::Unit::TestCase } def call - ToProc.call &self + ToProc.call(&self) end end @@ -2182,7 +2182,7 @@ class TestRefinement < Test::Unit::TestCase } def call - ToProc.call &self + ToProc.call(&self) end end end -- cgit v1.2.3