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

* bootstraptest/test_objectspace.rb: fix condition.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-12-22 10:54:02 +00:00
parent fc5c62bef7
commit 020fd204f8
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Dec 22 19:52:23 2007 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_objectspace.rb: fix condition.
Sat Dec 22 19:17:10 2007 Koichi Sasada <ko1@atdot.net>
* ext/probeprofiler/: removed.

View file

@ -17,7 +17,7 @@ assert_normal_exit %q{
ary.permutation(2) {|x|
if x == [1,2]
ObjectSpace.each_object(String) {|s|
s.clear if s.frozen? && (s.length == 40 || s.length == 80)
s.clear if !s.frozen? && (s.length == 40 || s.length == 80)
}
end
}