summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-10 17:54:06 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-10 18:53:56 +0900
commitbae9a21e40a65c0eaacebfd4b3c3a8de08892c74 (patch)
treed07757c41ec0e742788b7c4dab7b9c524b3ef2d9 /test
parent53c5a4bbe1851dba0dfcaf81c167290cbca93bac (diff)
[ruby/psych] Use pend instead of skip
https://github.com/ruby/psych/commit/efd2a62c9a
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_hash.rb2
-rw-r--r--test/psych/test_psych.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/psych/test_hash.rb b/test/psych/test_hash.rb
index ba11b827da..32ed7ec68c 100644
--- a/test/psych/test_hash.rb
+++ b/test/psych/test_hash.rb
@@ -114,7 +114,7 @@ eoyml
def test_key_deduplication
unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
- skip "This Ruby implementation doesn't support string deduplication"
+ pend "This Ruby implementation doesn't support string deduplication"
end
hashes = Psych.load(<<-eoyml)
diff --git a/test/psych/test_psych.rb b/test/psych/test_psych.rb
index 30612ded8f..1bfa523e4f 100644
--- a/test/psych/test_psych.rb
+++ b/test/psych/test_psych.rb
@@ -214,7 +214,7 @@ class TestPsych < Psych::TestCase
def test_load_freeze_deduplication
unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
- skip "This Ruby implementation doesn't support string deduplication"
+ pend "This Ruby implementation doesn't support string deduplication"
end
data = Psych.load("--- ['a']", freeze: true)