summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-03-30 13:39:07 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-03-30 13:39:07 -0700
commit1a5609f1c19238565ddf520b7439bfc0948cf539 (patch)
tree59c82a8a1a1aa504a5c634f65daeeecabc53651b /test
parent8dfd1b10016855187ade94f36d592b0319e2b226 (diff)
downloadpsych-1a5609f1c19238565ddf520b7439bfc0948cf539.zip
synching with ruby trunk
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_psych.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/psych/test_psych.rb b/test/psych/test_psych.rb
index f59af46..9986699 100644
--- a/test/psych/test_psych.rb
+++ b/test/psych/test_psych.rb
@@ -99,7 +99,7 @@ class TestPsych < Psych::TestCase
def test_add_builtin_type
got = nil
- Psych.add_builtin_type 'omap', do |type, val|
+ Psych.add_builtin_type 'omap' do |type, val|
got = val
end
Psych.load('--- !!omap hello')