diff options
author | Andrew Konchin <[email protected]> | 2025-06-02 19:34:54 +0300 |
---|---|---|
committer | Benoit Daloze <[email protected]> | 2025-06-02 21:54:48 +0200 |
commit | d6aa1714fed3e8b5ee8bede00a8853c338ff6092 (patch) | |
tree | ea863a44d9026f74b9a07375f401c3e5d8cb4bf5 /spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb | |
parent | 685c8ca9af892f562f64b54dbee73bb9a1999b90 (diff) |
Update to ruby/spec@4d2fc4d
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13495
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb')
-rw-r--r-- | spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb b/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb index b2f24ba151..5ae4a5e090 100644 --- a/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb +++ b/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb @@ -2,10 +2,10 @@ require_relative "../../../spec_helper" platform_is :windows do require 'win32ole' - describe "WIN32OLE_METHOD#helpstring" do + describe "WIN32OLE::Method#helpstring" do before :each do - ole_type = WIN32OLE_TYPE.new("Microsoft Scripting Runtime", "File") - @m_file_name = WIN32OLE_METHOD.new(ole_type, "name") + ole_type = WIN32OLE::Type.new("Microsoft Scripting Runtime", "File") + @m_file_name = WIN32OLE::Method.new(ole_type, "name") end it "raises ArgumentError if argument is given" do |