mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use Test namespace instead of MiniTest in test_parallel.rb
This commit is contained in:
parent
9ff614bc13
commit
905c04d1e6
Notes:
git
2021-09-11 08:48:33 +09:00
1 changed files with 3 additions and 3 deletions
|
|
@ -118,9 +118,9 @@ module TestParallel
|
|||
assert_kind_of(Array,result[3])
|
||||
assert_kind_of(Array,result[4])
|
||||
assert_kind_of(Array,result[2][1])
|
||||
assert_kind_of(MiniTest::Assertion,result[2][0][2])
|
||||
assert_kind_of(MiniTest::Skip,result[2][1][2])
|
||||
assert_kind_of(MiniTest::Skip,result[2][2][2])
|
||||
assert_kind_of(Test::Assertion,result[2][0][2])
|
||||
assert_kind_of(Test::Skip,result[2][1][2])
|
||||
assert_kind_of(Test::Skip,result[2][2][2])
|
||||
assert_kind_of(Exception, result[2][3][2])
|
||||
assert_equal(result[5], "TestE")
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue