From edadd5b796678e8f819030f9fa37dcae4be2b282 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 25 Dec 2023 13:48:54 +0900 Subject: [PATCH] [ruby/psych] Typofix by misspell https://github.com/ruby/psych/commit/fc9ca15999 --- test/psych/test_scalar_scanner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/psych/test_scalar_scanner.rb b/test/psych/test_scalar_scanner.rb index 145db58fd9515b..02b923afe2192f 100644 --- a/test/psych/test_scalar_scanner.rb +++ b/test/psych/test_scalar_scanner.rb @@ -150,7 +150,7 @@ def test_scan_int_commas_and_underscores end def test_scan_strict_int_commas_and_underscores - # this test is to ensure adherance to YML spec using the 'strict_integer' option + # this test is to ensure adherence to YML spec using the 'strict_integer' option scanner = Psych::ScalarScanner.new ClassLoader.new, strict_integer: true assert_equal 123_456_789, scanner.tokenize('123_456_789') assert_equal '123,456,789', scanner.tokenize('123,456,789')