diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-27 00:24:23 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-27 00:24:23 +0000 |
commit | 662cbf22fa5c3914fe04ced1b2b413aa6fc426b4 (patch) | |
tree | a3460ba1e12d8271abc11143d2ea4d787370e5b9 | |
parent | 984d26535eef6a26ed49ad3cc9b4bc9c9c907c00 (diff) |
* test/-ext-/postponed_job/test_postponed_job.rb: fix typo and class name.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/-ext-/postponed_job/test_postponed_job.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Mon May 27 09:24:03 2013 Koichi Sasada <ko1@atdot.net> + + * test/-ext-/postponed_job/test_postponed_job.rb: fix typo and class name. + Mon May 27 09:05:17 2013 Koichi Sasada <ko1@atdot.net> * include/ruby/ruby.h, gc.c, vm_trace.c: add internal events. diff --git a/test/-ext-/postponed_job/test_postponed_job.rb b/test/-ext-/postponed_job/test_postponed_job.rb index 7f9ecc0492..754f015624 100644 --- a/test/-ext-/postponed_job/test_postponed_job.rb +++ b/test/-ext-/postponed_job/test_postponed_job.rb @@ -4,7 +4,7 @@ require '-test-/postponed_job' module Bug def self.postponed_job_call_direct_wrapper(*args) - postponed_job_call_direct(*arg) + postponed_job_call_direct(*args) end def self.postponed_job_register_wrapper(*args) @@ -12,7 +12,7 @@ module Bug end end -class TestTask < Test::Unit::TestCase +class TestPostponed_job < Test::Unit::TestCase def test_register direct, registered = [], [] |