diff options
Diffstat (limited to 'config/environments/test.rb')
-rw-r--r-- | config/environments/test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/environments/test.rb b/config/environments/test.rb index 249910443..4e5057dd7 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -29,5 +29,7 @@ Rails.application.configure do # Print deprecation notices to stderr and the Rails logger. config.active_support.deprecation = [:stderr, :log] - config.secret_token = 'a secret token for running the tests' + config.secret_key_base = 'a secret token for running the tests' + + config.active_support.test_order = :random end |