From a84fc19203ff904c14d8e81065e342e3fb82e59f Mon Sep 17 00:00:00 2001 From: nahi Date: Thu, 29 Jan 2004 02:54:21 +0000 Subject: * 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 --- test/yaml/test_yaml.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/yaml/test_yaml.rb') 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 -- cgit v1.2.3