aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/adapters/resque.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-06 19:36:54 +0200
committerXavier Noria <fxn@hashref.com>2016-08-06 19:36:54 +0200
commit301ce2a6d11bc7a016f7ede71e3c6fd9fa0693a3 (patch)
tree23b7b501a5dbd32565b4bfcfee522d9950f79348 /activejob/test/support/integration/adapters/resque.rb
parent63fff600accb41b56a3e6ac403d9b1732de3086d (diff)
downloadrails-301ce2a6d11bc7a016f7ede71e3c6fd9fa0693a3.tar.gz
rails-301ce2a6d11bc7a016f7ede71e3c6fd9fa0693a3.tar.bz2
rails-301ce2a6d11bc7a016f7ede71e3c6fd9fa0693a3.zip
modernizes hash syntax in activejob
Diffstat (limited to 'activejob/test/support/integration/adapters/resque.rb')
-rw-r--r--activejob/test/support/integration/adapters/resque.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/test/support/integration/adapters/resque.rb b/activejob/test/support/integration/adapters/resque.rb
index cb1e376364..a21a1786c9 100644
--- a/activejob/test/support/integration/adapters/resque.rb
+++ b/activejob/test/support/integration/adapters/resque.rb
@@ -1,7 +1,7 @@
module ResqueJobsManager
def setup
ActiveJob::Base.queue_adapter = :resque
- Resque.redis = Redis::Namespace.new "active_jobs_int_test", redis: Redis.connect(url: "redis://127.0.0.1:6379/12", :thread_safe => true)
+ Resque.redis = Redis::Namespace.new "active_jobs_int_test", redis: Redis.connect(url: "redis://127.0.0.1:6379/12", thread_safe: true)
Resque.logger = Rails.logger
unless can_run?
puts "Cannot run integration tests for resque. To be able to run integration tests for resque you need to install and start redis.\n"