mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/extconf.rb: suppress a warning.
* ext/extmk.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b71cab7fa0
commit
fe98a03c53
7 changed files with 41 additions and 27 deletions
|
@ -67,7 +67,7 @@ class TestDir_M17N < Test::Unit::TestCase
|
|||
s2 = File.stat(filename2) rescue nil
|
||||
s3 = File.stat(filename3) rescue nil
|
||||
s4 = File.stat(filename4) rescue nil
|
||||
exit (s1 && s2 && !s3 && !s4) ? true : false
|
||||
exit((s1 && s2 && !s3 && !s4) ? true : false)
|
||||
EOS
|
||||
}
|
||||
end
|
||||
|
@ -122,7 +122,7 @@ class TestDir_M17N < Test::Unit::TestCase
|
|||
s1 = File.stat(filename1) rescue nil
|
||||
s2 = File.stat(filename2) rescue nil
|
||||
s3 = File.stat(filename3) rescue nil
|
||||
exit (s1 && s2 && s3) ? true : false
|
||||
exit((s1 && s2 && s3) ? true : false)
|
||||
EOS
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue