[前][次][番号順一覧][スレッド一覧]

ruby-changes:70437

From: Yuki <ko1@a...>
Date: Wed, 22 Dec 2021 21:22:38 +0900 (JST)
Subject: [ruby-changes:70437] 573d9d3a4a (master): Replace an deprecated constant with a new one in did_you_mean

https://git.ruby-lang.org/ruby.git/commit/?id=573d9d3a4a

From 573d9d3a4a0f112379874cedf4e494515e4b3f15 Mon Sep 17 00:00:00 2001
From: Yuki Nishijima <yk.nishijima@g...>
Date: Wed, 22 Dec 2021 21:21:25 +0900
Subject: Replace an deprecated constant with a new one in did_you_mean

---
 test/optparse/test_did_you_mean.rb | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/test/optparse/test_did_you_mean.rb b/test/optparse/test_did_you_mean.rb
index aa866f40721..a9ad051f033 100644
--- a/test/optparse/test_did_you_mean.rb
+++ b/test/optparse/test_did_you_mean.rb
@@ -13,11 +13,7 @@ class TestOptionParser::DidYouMean < TestOptionParser https://github.com/ruby/ruby/blob/trunk/test/optparse/test_did_you_mean.rb#L13
     @opt.def_option("--bar", Integer) { |v| @bar = v }
     @opt.def_option("--baz", Integer) { |v| @baz = v }
     @formatter = ::DidYouMean.formatter
-    case @formatter
-    when ::DidYouMean::PlainFormatter
-    else
-      ::DidYouMean.formatter = ::DidYouMean::PlainFormatter.new
-    end
+    ::DidYouMean.formatter = ::DidYouMean::Formatter
   end
 
   def teardown
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]