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:
parent
cb0d480532
commit
b69f55a673
2 changed files with 6 additions and 6 deletions
|
@ -150,7 +150,7 @@ module OpenURI
|
|||
yield io
|
||||
ensure
|
||||
if io.kind_of? Tempfile
|
||||
io.close!
|
||||
io.close!
|
||||
else
|
||||
io.close
|
||||
end
|
||||
|
|
|
@ -24,8 +24,8 @@ EOYAML
|
|||
|
||||
def test_mri_compatibility_object_with_ivars
|
||||
yaml = <<EOYAML
|
||||
---
|
||||
- &id001 !ruby/object:ObjectWithInstanceVariables
|
||||
---
|
||||
- &id001 !ruby/object:ObjectWithInstanceVariables
|
||||
var1: test1
|
||||
var2: test2
|
||||
- *id001
|
||||
|
@ -33,7 +33,7 @@ EOYAML
|
|||
EOYAML
|
||||
|
||||
result = Psych.load yaml
|
||||
result.each do |el|
|
||||
result.each do |el|
|
||||
assert_same(result[0], el)
|
||||
assert_equal('test1', el.var1)
|
||||
assert_equal('test2', el.var2)
|
||||
|
@ -42,8 +42,8 @@ EOYAML
|
|||
|
||||
def test_mri_compatibility_substring_with_ivars
|
||||
yaml = <<EOYAML
|
||||
---
|
||||
- &id001 !str:SubStringWithInstanceVariables
|
||||
---
|
||||
- &id001 !str:SubStringWithInstanceVariables
|
||||
str: test
|
||||
"@var1": test
|
||||
- *id001
|
||||
|
|
Loading…
Reference in a new issue