diff options
author | Jeremy Evans <[email protected]> | 2022-04-22 13:01:43 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2022-04-22 15:00:16 -0700 |
commit | ab3cb29bd9bff9c16cfb9d19cc02026998282c12 (patch) | |
tree | 6127856f758af8ff4b435f845c2777e0f478ca94 /test/date/test_date_ractor.rb | |
parent | c2d38a0d2d78f749fba47073b33106fd2e57767a (diff) |
Avoid defining the same test class in multiple files
Should fix issues with parallel testing sometimes not running all
tests.
This should be viewed skipping whitespace changes.
Fixes [Bug #18731]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5839
Diffstat (limited to 'test/date/test_date_ractor.rb')
-rw-r--r-- | test/date/test_date_ractor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/date/test_date_ractor.rb b/test/date/test_date_ractor.rb index 7b0c3f4911..7ec953d87a 100644 --- a/test/date/test_date_ractor.rb +++ b/test/date/test_date_ractor.rb @@ -2,7 +2,7 @@ require 'test/unit' require 'date' -class TestDateParse < Test::Unit::TestCase +class TestDateParseRactor < Test::Unit::TestCase def code(klass = Date, share: false) <<~RUBY.gsub('Date', klass.name) share = #{share} |