From fe2a37dbcbae5324618845968dd63e458010970d Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 14 Feb 2007 16:53:00 +0000 Subject: * test/fileutils/test_fileutils.rb (check_singleton): fix to use symbole instead of string. * test/io/nonblock/test_flush.rb: enable tests. * test/xmlrpc/test_webrick_server.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/fileutils/test_fileutils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/fileutils') diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index 2cce67cc2..47c7ae63c 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -77,7 +77,7 @@ class TestFileUtils include FileUtils def check_singleton(name) - assert_equal true, ::FileUtils.public_methods.include?(name.to_s) + assert_equal true, ::FileUtils.public_methods.include?(name.to_sym) end def my_rm_rf(path) -- cgit