diff options
author | aycabta <[email protected]> | 2019-10-27 02:28:25 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-10-29 12:34:44 +0900 |
commit | b4da6fc1c277190bbd10e795ebf3be45772038e8 (patch) | |
tree | 00ecc642dfd07b49d266761210cb0768cd61b3ae /test/rdoc/test_rdoc_servlet.rb | |
parent | 54eb51d72bc43f90b595f0d7ffb5069ebf1a56d9 (diff) |
[ruby/rdoc] Use omit of test-unit instead of skip of minitest
https://github.com/ruby/rdoc/commit/1c5bf2ae1d
Diffstat (limited to 'test/rdoc/test_rdoc_servlet.rb')
-rw-r--r-- | test/rdoc/test_rdoc_servlet.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rdoc/test_rdoc_servlet.rb b/test/rdoc/test_rdoc_servlet.rb index ff64d5670f..1127408193 100644 --- a/test/rdoc/test_rdoc_servlet.rb +++ b/test/rdoc/test_rdoc_servlet.rb @@ -294,7 +294,7 @@ class TestRDocServlet < RDoc::TestCase end def test_if_modified_since - skip 'File.utime on directory not supported' if Gem.win_platform? + omit 'File.utime on directory not supported' if Gem.win_platform? temp_dir do now = Time.now @@ -307,7 +307,7 @@ class TestRDocServlet < RDoc::TestCase end def test_if_modified_since_not_modified - skip 'File.utime on directory not supported' if Gem.win_platform? + omit 'File.utime on directory not supported' if Gem.win_platform? temp_dir do now = Time.now |