summaryrefslogtreecommitdiff
path: root/test/win32ole
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 12:34:21 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 12:34:21 +0000
commita00a9a28fbbb1268fc6c3c50a695adadbf5be4f4 (patch)
tree79a9344df30fd23af81f184c76dd08ad70f15019 /test/win32ole
parent21453dc7381d09e6926c02c0143812680c1cfa8a (diff)
* test/win32ole/test_win32ole_type.rb (test_implemented_ole_types):
IShellDispatch6 bundled in Windows 8. Thanks to phasis68 (Heesob Park). [ruby-core:49580][Bug #7403] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/win32ole')
-rw-r--r--test/win32ole/test_win32ole_type.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/win32ole/test_win32ole_type.rb b/test/win32ole/test_win32ole_type.rb
index 8ecf2b2c27..5422352f04 100644
--- a/test/win32ole/test_win32ole_type.rb
+++ b/test/win32ole/test_win32ole_type.rb
@@ -173,7 +173,7 @@ if defined?(WIN32OLE_TYPE)
ole_types = @ole_type.implemented_ole_types
assert_instance_of(Array, ole_types)
assert_equal(1, ole_types.size)
- assert_match(/^IShellDispatch5{0,1}$/, ole_types[0].name)
+ assert_match(/^IShellDispatch\d{0,1}$/, ole_types[0].name)
ie_otype = WIN32OLE_TYPE.new("Microsoft Internet Controls", "InternetExplorer")
ole_types = ie_otype.implemented_ole_types