summaryrefslogtreecommitdiff
path: root/test/-ext-/postponed_job/test_postponed_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/postponed_job/test_postponed_job.rb')
-rw-r--r--test/-ext-/postponed_job/test_postponed_job.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/-ext-/postponed_job/test_postponed_job.rb b/test/-ext-/postponed_job/test_postponed_job.rb
index 978b728ef7..7dc28776d0 100644
--- a/test/-ext-/postponed_job/test_postponed_job.rb
+++ b/test/-ext-/postponed_job/test_postponed_job.rb
@@ -19,8 +19,8 @@ class TestPostponed_job < Test::Unit::TestCase
Bug.postponed_job_call_direct_wrapper(direct)
Bug.postponed_job_register_wrapper(registered)
- assert_match( /postponed_job_call_direct_wrapper/, direct.join)
- assert_not_match( /postponed_job_register_wrapper/, registered.join)
+ assert_equal([0], direct)
+ assert_equal([3], registered)
Bug.postponed_job_register_one(ary = [])
assert_equal [1], ary