From 778c3973103651faa7a50d58bddbb8ea89202ee4 Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Sun, 9 Feb 2020 09:25:23 +0000 Subject: Fix remove warning & support multi-run test for test/psych/visitors/test_to_ruby.rb --- test/psych/visitors/test_to_ruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/psych') diff --git a/test/psych/visitors/test_to_ruby.rb b/test/psych/visitors/test_to_ruby.rb index 0ebfe9bab0..e1a0056a61 100644 --- a/test/psych/visitors/test_to_ruby.rb +++ b/test/psych/visitors/test_to_ruby.rb @@ -24,7 +24,7 @@ module Psych end def test_legacy_struct - Struct.send(:remove_const, AWESOME) if Struct.const_defined?(:AWESOME) + Struct.send(:remove_const, :AWESOME) if Struct.const_defined?(:AWESOME) foo = Struct.new('AWESOME', :bar) assert_equal foo.new('baz'), Psych.load(<<-eoyml) !ruby/struct:AWESOME -- cgit v1.2.3