Skip to content

Commit efd2a62

Browse files
committed
Use pend instead of skip
1 parent f85a008 commit efd2a62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/psych/test_hash.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_ref_append
114114

115115
def test_key_deduplication
116116
unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
117-
skip "This Ruby implementation doesn't support string deduplication"
117+
pend "This Ruby implementation doesn't support string deduplication"
118118
end
119119

120120
hashes = Psych.load(<<-eoyml)

test/psych/test_psych.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def test_load_freeze
214214

215215
def test_load_freeze_deduplication
216216
unless String.method_defined?(:-@) && (-("a" * 20)).equal?((-("a" * 20)))
217-
skip "This Ruby implementation doesn't support string deduplication"
217+
pend "This Ruby implementation doesn't support string deduplication"
218218
end
219219

220220
data = Psych.load("--- ['a']", freeze: true)

0 commit comments

Comments
 (0)