* test/yaml/test_boolean.rb (test_n): fixing test name

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2009-12-17 19:37:54 +00:00
Родитель 7b7d8f8732
Коммит eadda0002a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ module YAML
###
# YAML spec says "n" and "N" may be used as false, but Syck treats them
# as literal strings
def test_y
def test_n
assert_equal "n", YAML.load("--- n")
assert_equal "N", YAML.load("--- N")
end