diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/ruby/test_iterator.rb | 8 |
2 files changed, 4 insertions, 8 deletions
@@ -1,3 +1,7 @@ +Wed Jan 24 20:34:51 2007 Kouhei Sutou <[email protected]> + + * test/ruby/test_iterator.rb: removed a needless workaround. + Wed Jan 24 18:05:39 2007 Yukihiro Matsumoto <[email protected]> * misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): fix diff --git a/test/ruby/test_iterator.rb b/test/ruby/test_iterator.rb index 0632881a53..0db54302f5 100644 --- a/test/ruby/test_iterator.rb +++ b/test/ruby/test_iterator.rb @@ -1,11 +1,3 @@ -# TODO: tmp - -class Object - Proc_orig = Proc - remove_const :Proc - Proc = YARVCore::VM::Proc -end - require 'test/unit' class Array |