diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 04:48:34 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 04:48:34 +0000 |
| commit | 44fa0f3fa8008fc82a8758fd8510c0a5af440c3f (patch) | |
| tree | c9dcbb2556d0a80c2799cb158f6005a320810049 /test/ruby | |
| parent | 4e3d1905214c2f5f98a79d0c97d8b79bbaedbc81 (diff) | |
| download | ruby-44fa0f3fa8008fc82a8758fd8510c0a5af440c3f.tar.gz ruby-44fa0f3fa8008fc82a8758fd8510c0a5af440c3f.tar.xz ruby-44fa0f3fa8008fc82a8758fd8510c0a5af440c3f.zip | |
* ext/tk/lib/tk/font.rb, ext/tk/lib/tkextlib/ICONS/icons.rb,
ext/tk/sample/tkextlib/treectrl/demo.rb, lib/net/imap.rb,
lib/rss/parser.rb, test/rss/test_content.rb,
test/rss/test_dublincore.rb, test/rss/test_syndication.rb,
test/rss/test_trackback.rb, test/ruby/test_eval.rb,
test/socket/test_socket.rb, test/socket/test_udp.rb:
Object#fcall was renamed as Object#funcall.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_eval.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_eval.rb b/test/ruby/test_eval.rb index 273b3172b..28e5cd2c2 100644 --- a/test/ruby/test_eval.rb +++ b/test/ruby/test_eval.rb @@ -146,7 +146,7 @@ class TestEval < Test::Unit::TestCase assert_nothing_raised { def temporally_method_for_test_eval_and_define_method(&block) lambda { - class << Object.new; self end.fcall(:define_method, :zzz, &block) + class << Object.new; self end.funcall(:define_method, :zzz, &block) } end v = eval("temporally_method_for_test_eval_and_define_method {}") |
