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

ruby-changes:70446

From: Yuki <ko1@a...>
Date: Thu, 23 Dec 2021 10:48:50 +0900 (JST)
Subject: [ruby-changes:70446] 1527f7569b (master): Revert "Replace an deprecated constant with a new one in did_you_mean"

https://git.ruby-lang.org/ruby.git/commit/?id=1527f7569b

From 1527f7569b0412f3bc7ac98a3461e59a4891ed96 Mon Sep 17 00:00:00 2001
From: Yuki Nishijima <yk.nishijima@g...>
Date: Thu, 23 Dec 2021 10:48:21 +0900
Subject: Revert "Replace an deprecated constant with a new one in
 did_you_mean"

This reverts commit 573d9d3a4a0f112379874cedf4e494515e4b3f15.
---
 test/optparse/test_did_you_mean.rb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/test/optparse/test_did_you_mean.rb b/test/optparse/test_did_you_mean.rb
index a9ad051f033..aa866f40721 100644
--- a/test/optparse/test_did_you_mean.rb
+++ b/test/optparse/test_did_you_mean.rb
@@ -13,7 +13,11 @@ 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
-    ::DidYouMean.formatter = ::DidYouMean::Formatter
+    case @formatter
+    when ::DidYouMean::PlainFormatter
+    else
+      ::DidYouMean.formatter = ::DidYouMean::PlainFormatter.new
+    end
   end
 
   def teardown
-- 
cgit v1.2.1


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

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