diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-12-18 16:59:59 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-12-18 16:59:59 -0800 |
commit | 058eef6886cd21c6435a02a73b13f72b63fbe441 (patch) | |
tree | a6ccf8ece441a93b8f6b3ef90af614982e798529 /test | |
parent | cb8c3eb5a62c792d657eb7318d033ef52d2127a3 (diff) | |
download | psych-058eef6886cd21c6435a02a73b13f72b63fbe441.zip |
refactoring for speed
Diffstat (limited to 'test')
-rw-r--r-- | test/yaml/test_boolean.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/yaml/test_boolean.rb b/test/yaml/test_boolean.rb index 7bc474e..8113348 100644 --- a/test/yaml/test_boolean.rb +++ b/test/yaml/test_boolean.rb @@ -28,7 +28,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 |