1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bootstraptest/test_thread.rb: fix test. [Bug #2342]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2010-04-22 14:02:09 +00:00
parent 14e5c442c5
commit 0ffb18de45
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Thu Apr 22 22:56:42 2010 Yusuke Endoh <mame@tsg.ne.jp>
* bootstraptest/test_thread.rb: fix test. [Bug #2342]
Thu Apr 22 21:50:17 2010 Keiju Ishitsuka <keiju@ruby-lang.org>
* lib/irb/ext/multi-irb.rb: fix multi-irb running

View file

@ -174,9 +174,9 @@ assert_equal %q{[true, nil, true]}, %q{
$a = $~
Thread.new{
$b = $~
/a/ =~ 'a'
/b/ =~ 'b'
$c = $~
}
}.join
$d = $~
[$a == $d, $b, $c != $d]
}