diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-13 00:02:30 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-13 00:02:30 +0000 |
commit | ad20982eccada0da045a977d2a27280ce5908ca2 (patch) | |
tree | 608d7a17ebd85c0f7e1acd64faae79532957ba3e | |
parent | 7f78597ce4da9334d3e97fa6898aa957d7b2da83 (diff) | |
download | ruby-ad20982eccada0da045a977d2a27280ce5908ca2.tar.gz ruby-ad20982eccada0da045a977d2a27280ce5908ca2.tar.xz ruby-ad20982eccada0da045a977d2a27280ce5908ca2.zip |
* test/yaml/test_yaml.rb (test_ruby_struct): struct name din not match.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5181 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/yaml/test_yaml.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb index 35bb7c5f7..ded9530d8 100644 --- a/test/yaml/test_yaml.rb +++ b/test/yaml/test_yaml.rb @@ -1,3 +1,4 @@ +# -*- mode: ruby; ruby-indent-level: 4; tab-width: 4 -*- # vim:sw=4:ts=4 # $Id$ # @@ -1065,7 +1066,7 @@ EOY ) assert_to_yaml( YAML_Tests::StructTest.new( 123 ), <<EOY ) ---- !ruby/struct:Test::StructTest +--- !ruby/struct:YAML_Tests::StructTest c: 123 EOY |