summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/-ext-/postponed_job/test_postponed_job.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d695f7fe3..f5eba8479b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 = [], []