aboutsummaryrefslogtreecommitdiffstats
path: root/test/testunit
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 08:09:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-07 08:09:23 +0000
commite0e3997f28fff2bf927c6bf35860c7fa62722b92 (patch)
tree01b67ec3c2bf302815a49775702dbb289d7b3065 /test/testunit
parentb66f78961882d770620686cf702c3f12172b94a3 (diff)
downloadruby-e0e3997f28fff2bf927c6bf35860c7fa62722b92.tar.gz
test_parallel.rb: match the count
* test/testunit/test_parallel.rb (test_should_run_all_without_any_leaks): match the final test count instead of progressing indicators. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/testunit')
-rw-r--r--test/testunit/test_parallel.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testunit/test_parallel.rb b/test/testunit/test_parallel.rb
index 35901df960..3e7c2619e1 100644
--- a/test/testunit/test_parallel.rb
+++ b/test/testunit/test_parallel.rb
@@ -164,7 +164,7 @@ module TestParallel
def test_should_run_all_without_any_leaks
spawn_runner
buf = Timeout.timeout(10) {@test_out.read}
- assert_match(/^[SFE\.]{9}$/,buf)
+ assert_match(/^9 tests/,buf)
end
def test_should_retry_failed_on_workers