summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2025-06-17 22:21:26 +0900
committerNobuyoshi Nakada <[email protected]>2025-06-18 01:46:58 +0900
commit1a527929a5f521cbccc177020fcf196ea5487d80 (patch)
treea993c5e184f20e68c220a2c739bf1fdb546e7973
parentc99cb62da81646e54ffb391b5cb1d2a3bc45bc0c (diff)
Revert "Temporary pend unknown behavior of parallel tests"
This reverts commit 980f61935f6e8331e0908dc963e60fb727ab4d8c, which seems no longer needed.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13640
-rw-r--r--tool/test/testunit/test_parallel.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/tool/test/testunit/test_parallel.rb b/tool/test/testunit/test_parallel.rb
index a0cbca69eb..d5e88ba671 100644
--- a/tool/test/testunit/test_parallel.rb
+++ b/tool/test/testunit/test_parallel.rb
@@ -127,9 +127,7 @@ module TestParallel
result = Marshal.load($1.chomp.unpack1("m"))
assert_equal(5, result[0])
- pend "TODO: result[1] returns 17. We should investigate it" do # TODO: misusage of pend (pend doens't use given block)
- assert_equal(12, result[1])
- end
+ assert_equal(12, result[1])
assert_kind_of(Array,result[2])
assert_kind_of(Array,result[3])
assert_kind_of(Array,result[4])