diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-10-22 18:01:36 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-10-22 18:01:36 -0700 |
commit | a8cc4c8417baac3bedee0b3893932a053f72f7e7 (patch) | |
tree | d2fcf06a272c6073a280f3cef3c4aa9ae129369f /test/yaml/test_yaml.rb | |
parent | 35fb005e028b42faff1ec0f01d84ed88d155df06 (diff) | |
download | psych-a8cc4c8417baac3bedee0b3893932a053f72f7e7.zip |
fixing a test
Diffstat (limited to 'test/yaml/test_yaml.rb')
-rw-r--r-- | test/yaml/test_yaml.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb index bdc83aa..a2ce861 100644 --- a/test/yaml/test_yaml.rb +++ b/test/yaml/test_yaml.rb @@ -589,14 +589,14 @@ EOY def test_spec_root_fold y = YAML::load( <<EOY ---- > +--- This YAML stream contains a single text value. The next stream is a log file - a sequence of log entries. Adding an entry to the log is a simple matter of appending it at the end. EOY ) - assert_equal( y, "This YAML stream contains a single text value. The next stream is a log file - a sequence of log entries. Adding an entry to the log is a simple matter of appending it at the end.\n" ) + assert_equal( y, "This YAML stream contains a single text value. The next stream is a log file - a sequence of log entries. Adding an entry to the log is a simple matter of appending it at the end." ) end def test_spec_root_mapping |