summaryrefslogtreecommitdiff
path: root/test/win32ole
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-01-11 21:34:48 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-01-12 10:50:43 +0900
commit8ccbca262352f282c9d8a06538cfe2dd20c31410 (patch)
tree5184c30aeb8c3f0f4f6f4621d0fcd8bea8bfe657 /test/win32ole
parent5331615d546169f1c90014a3cd2964e6d3dd0420 (diff)
[ruby/win32ole] Use omit() for skip()
https://github.com/ruby/win32ole/commit/2d5dc47ed4
Diffstat (limited to 'test/win32ole')
-rw-r--r--test/win32ole/test_win32ole_variant.rb2
-rw-r--r--test/win32ole/test_win32ole_variant_outarg.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/win32ole/test_win32ole_variant.rb b/test/win32ole/test_win32ole_variant.rb
index 390534b5e1..1cedf55ef3 100644
--- a/test/win32ole/test_win32ole_variant.rb
+++ b/test/win32ole/test_win32ole_variant.rb
@@ -434,7 +434,7 @@ if defined?(WIN32OLE_VARIANT)
begin
WIN32OLE.locale = 0x0411 # set locale Japanese
rescue WIN32OLERuntimeError
- skip("Japanese locale is not installed")
+ omit("Japanese locale is not installed")
end
if WIN32OLE.locale == 0x0411
obj = WIN32OLE_VARIANT.new("\\10,000", WIN32OLE::VARIANT::VT_CY)
diff --git a/test/win32ole/test_win32ole_variant_outarg.rb b/test/win32ole/test_win32ole_variant_outarg.rb
index aa5793b84c..f50b04aaf5 100644
--- a/test/win32ole/test_win32ole_variant_outarg.rb
+++ b/test/win32ole/test_win32ole_variant_outarg.rb
@@ -42,7 +42,7 @@ if defined?(WIN32OLE_VARIANT)
def test_variant_ref_and_argv
if !ado_csv_installed?
- skip("ActiveX Data Object Library not found")
+ omit("ActiveX Data Object Library not found")
end
sql = "INSERT INTO data.csv VALUES (5, 'E')"
@db.execute(sql, -1)