summaryrefslogtreecommitdiff
path: root/test/rubygems
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-04-05 10:24:45 +0900
committergit <svn-admin@ruby-lang.org>2023-04-05 05:49:24 +0000
commitbf8afe434f4fcaad4d69a038e7f92786b5a56723 (patch)
tree7a8b7d64d87886f3e7b6045a7776a6b36e1c2716 /test/rubygems
parent28d6c6d69b4e7028649a0dc42f06507e7cd47e39 (diff)
downloadruby-bf8afe434f4fcaad4d69a038e7f92786b5a56723.tar.gz
[rubygems/rubygems] Removed self.mingw_windows?, It's not used rubygems
https://github.com/rubygems/rubygems/commit/ba3c985701
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/helper.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/rubygems/helper.rb b/test/rubygems/helper.rb
index ef6ff858df..afd308efc9 100644
--- a/test/rubygems/helper.rb
+++ b/test/rubygems/helper.rb
@@ -1177,15 +1177,8 @@ Also, a list:
##
# Is this test being run on a version of Ruby built with mingw?
- def self.mingw_windows?
- RUBY_PLATFORM.match("mingw")
- end
-
- ##
- # see ::mingw_windows?
-
def mingw_windows?
- self.class.mingw_windows?
+ RUBY_PLATFORM.match("mingw")
end
##