summaryrefslogtreecommitdiff
path: root/test/yaml/test_yaml.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-29 02:54:21 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-29 02:54:21 +0000
commita84fc19203ff904c14d8e81065e342e3fb82e59f (patch)
tree06e749b6d4def33b1b692192b7c28537a52afda3 /test/yaml/test_yaml.rb
parent877408163a4d8725c24073784a5fee8511fdeb1e (diff)
* test/rss/test_*: do $: trick while searching a module in the current
directory. * test/xsd/test_xmlschemaparser.rb, test/wsdl/test_emptycomplextype.rb, test/soap/helloworld/test_helloworld.rb, test/soap/calc/{test_calc.rb,test_calc2.rb}: do File.expand_path before using __FILE__. * test/yaml/test_yaml.rb: assert_equals -> assert_equal. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/yaml/test_yaml.rb')
-rw-r--r--test/yaml/test_yaml.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb
index 642ebc558f..fd9f79b5f3 100644
--- a/test/yaml/test_yaml.rb
+++ b/test/yaml/test_yaml.rb
@@ -1191,7 +1191,7 @@ EOY
require 'yaml'
t = Time.now
5.times do
- assert_equals( t, YAML.load( YAML.dump( t ) ) )
+ assert_equal( t, YAML.load( YAML.dump( t ) ) )
end
end