diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-01-04 17:25:30 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-01-04 17:25:30 +0900 |
commit | 47bf64a26d3d95a312ea5cf5d94ee1d2104f5e26 (patch) | |
tree | 6781f40ea1236810198f1f00e024c95cb0a55d60 /test/ruby/test_exception.rb | |
parent | f0669fb6cbdbad499974252ef2d955a608d0adc1 (diff) |
Use omit instead of skip: test/ruby/**/*.rb
Diffstat (limited to 'test/ruby/test_exception.rb')
-rw-r--r-- | test/ruby/test_exception.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index 4ddd6011b9..2985f75fd6 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -561,7 +561,7 @@ end.join end def test_ensure_after_nomemoryerror - skip "Forcing NoMemoryError causes problems in some environments" + omit "Forcing NoMemoryError causes problems in some environments" assert_separately([], "$_ = 'a' * 1_000_000_000_000_000_000") rescue NoMemoryError assert_raise(NoMemoryError) do @@ -1064,7 +1064,7 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status| end def test_warn_deprecated_backwards_compatibility_category - skip "no method to test" + omit "no method to test" warning = capture_warning_warn { } @@ -1072,7 +1072,7 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status| end def test_warn_deprecated_category - skip "no method to test" + omit "no method to test" warning = capture_warning_warn(category: true) { } |