aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/integration
diff options
context:
space:
mode:
authorJoe Lewis <swapdisc@users.noreply.github.com>2014-10-22 06:33:10 -0700
committerJoe Lewis <swapdisc@users.noreply.github.com>2014-10-22 06:33:10 -0700
commit8e12371da6729cb11be442b686443fa0f0fdc944 (patch)
tree2ebb477e4b37381fc99e7a6b378f6fb860b1f427 /activejob/test/integration
parent40e904df37253301c23f8abf87135d751bddfa9c (diff)
downloadrails-8e12371da6729cb11be442b686443fa0f0fdc944.tar.gz
rails-8e12371da6729cb11be442b686443fa0f0fdc944.tar.bz2
rails-8e12371da6729cb11be442b686443fa0f0fdc944.zip
:nail_care: fix typos in activejob queuing test
Diffstat (limited to 'activejob/test/integration')
-rw-r--r--activejob/test/integration/queuing_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/test/integration/queuing_test.rb b/activejob/test/integration/queuing_test.rb
index 219be11509..38874b51a8 100644
--- a/activejob/test/integration/queuing_test.rb
+++ b/activejob/test/integration/queuing_test.rb
@@ -3,13 +3,13 @@ require 'jobs/logging_job'
require 'active_support/core_ext/numeric/time'
class QueuingTest < ActiveSupport::TestCase
- test 'should run jobs enqueued on a listenting queue' do
+ test 'should run jobs enqueued on a listening queue' do
TestJob.perform_later @id
wait_for_jobs_to_finish_for(5.seconds)
assert job_executed
end
- test 'should not run jobs queued on a non-listenting queue' do
+ test 'should not run jobs queued on a non-listening queue' do
skip if adapter_is?(:inline) || adapter_is?(:sucker_punch)
old_queue = TestJob.queue_name