summaryrefslogtreecommitdiff
path: root/test/psych/test_ractor.rb
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-05-13 10:49:03 -0700
committerGitHub <noreply@github.com>2021-05-13 10:49:03 -0700
commit4de7e9c879ae042d0c25d6ade6274d593c4cc5bb (patch)
tree400c2acb636fe2e4f0a56920165648f28132a9cd /test/psych/test_ractor.rb
parent64bee7e2dee741a9f64e5c1b2122c07ef3e6c81a (diff)
parentcb50aa8d3fb8be01897becff77b4922b12a0ab4c (diff)
downloadpsych-4de7e9c879ae042d0c25d6ade6274d593c4cc5bb.zip
Merge pull request #488 from ruby/add-unsafe
Introduce `Psych.unsafe_load`
Diffstat (limited to 'test/psych/test_ractor.rb')
-rw-r--r--test/psych/test_ractor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/psych/test_ractor.rb b/test/psych/test_ractor.rb
index 61b80a1..1b0d810 100644
--- a/test/psych/test_ractor.rb
+++ b/test/psych/test_ractor.rb
@@ -6,7 +6,7 @@ class TestPsychRactor < Test::Unit::TestCase
assert_ractor(<<~RUBY, require_relative: 'helper')
obj = {foo: [42]}
obj2 = Ractor.new(obj) do |obj|
- Psych.load(Psych.dump(obj))
+ Psych.unsafe_load(Psych.dump(obj))
end.take
assert_equal obj, obj2
RUBY