diff options
Diffstat (limited to 'test/jobs')
-rw-r--r-- | test/jobs/hello_job.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/jobs/hello_job.rb b/test/jobs/hello_job.rb index 469123fe0a..d0e65f9674 100644 --- a/test/jobs/hello_job.rb +++ b/test/jobs/hello_job.rb @@ -1,6 +1,4 @@ class HelloJob < ActiveJob::Base - @queue = :greetings - def self.perform(greeter = "David") $BUFFER << "#{greeter} says hello" end |