1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/psych] fix typo

https://github.com/ruby/psych/commit/ebb0cbded1
This commit is contained in:
Alexandr Opak 2021-01-29 13:10:46 +01:00 committed by Hiroshi SHIBATA
parent 48b50cb4fe
commit beffa72c27

View file

@ -130,8 +130,8 @@ module Psych
assert_equal 123_456_789, ss.tokenize('1_2,3,4_5,6_789')
assert_equal 1, ss.tokenize('1')
assert_equal 1 ss.tokenize('+1')
assert_equal -1 ss.tokenize('-1')
assert_equal 1, ss.tokenize('+1')
assert_equal -1, ss.tokenize('-1')
assert_equal 0b010101010, ss.tokenize('0b010101010')
assert_equal 0b010101010, ss.tokenize('0b0,1_0,1_,0,1_01,0')