From 0e33028d69a25c512df1a44f930652c9a5c5b153 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Sun, 1 Nov 2020 13:55:54 +0900 Subject: use one-line pattern matching for warning tests --- spec/ruby/language/pattern_matching_spec.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'spec/ruby/language/pattern_matching_spec.rb') diff --git a/spec/ruby/language/pattern_matching_spec.rb b/spec/ruby/language/pattern_matching_spec.rb index 2d22ec7e64..e653b54840 100644 --- a/spec/ruby/language/pattern_matching_spec.rb +++ b/spec/ruby/language/pattern_matching_spec.rb @@ -41,11 +41,9 @@ ruby_version_is "2.7" do it "warns about pattern matching is experimental feature" do -> { eval <<~RUBY - case 0 - in 0 - end + 1 => a RUBY - }.should complain(/warning: Pattern matching is experimental, and the behavior may change in future versions of Ruby!/) + }.should complain(/warning: One-line pattern matching is experimental, and the behavior may change in future versions of Ruby!/) end it "binds variables" do -- cgit v1.2.3