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

* lib/open-uri.rb: delete space.

* test/psych/test_alias_and_anchor.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ayumin 2012-07-17 16:13:10 +00:00
parent cb0d480532
commit b69f55a673
2 changed files with 6 additions and 6 deletions

View file

@ -150,7 +150,7 @@ module OpenURI
yield io yield io
ensure ensure
if io.kind_of? Tempfile if io.kind_of? Tempfile
io.close! io.close!
else else
io.close io.close
end end

View file

@ -24,8 +24,8 @@ EOYAML
def test_mri_compatibility_object_with_ivars def test_mri_compatibility_object_with_ivars
yaml = <<EOYAML yaml = <<EOYAML
--- ---
- &id001 !ruby/object:ObjectWithInstanceVariables - &id001 !ruby/object:ObjectWithInstanceVariables
var1: test1 var1: test1
var2: test2 var2: test2
- *id001 - *id001
@ -33,7 +33,7 @@ EOYAML
EOYAML EOYAML
result = Psych.load yaml result = Psych.load yaml
result.each do |el| result.each do |el|
assert_same(result[0], el) assert_same(result[0], el)
assert_equal('test1', el.var1) assert_equal('test1', el.var1)
assert_equal('test2', el.var2) assert_equal('test2', el.var2)
@ -42,8 +42,8 @@ EOYAML
def test_mri_compatibility_substring_with_ivars def test_mri_compatibility_substring_with_ivars
yaml = <<EOYAML yaml = <<EOYAML
--- ---
- &id001 !str:SubStringWithInstanceVariables - &id001 !str:SubStringWithInstanceVariables
str: test str: test
"@var1": test "@var1": test
- *id001 - *id001