diff options
author | José Valim <jose.valim@gmail.com> | 2010-09-25 11:01:43 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-09-25 11:01:43 +0200 |
commit | e6d503bcfbda5e70cb54d1506a744d6045e1b4c4 (patch) | |
tree | 20f3b7624abf04ea7664dd92e1625ae9226d33aa | |
parent | 75a960ca6e38ae68fd55c034272102077fd95afa (diff) | |
download | rails-e6d503bcfbda5e70cb54d1506a744d6045e1b4c4.tar.gz rails-e6d503bcfbda5e70cb54d1506a744d6045e1b4c4.tar.bz2 rails-e6d503bcfbda5e70cb54d1506a744d6045e1b4c4.zip |
Update abort message (ht: tilsammans).
-rw-r--r-- | railties/lib/rails/test_help.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/test_help.rb b/railties/lib/rails/test_help.rb index 3f90e786c1..7c1472147b 100644 --- a/railties/lib/rails/test_help.rb +++ b/railties/lib/rails/test_help.rb @@ -1,6 +1,6 @@ # Make double-sure the RAILS_ENV is not set to production, # so fixtures aren't loaded into that environment -abort("Abort testing: Your Rails environment is not running in test mode!") if Rails.env.production? +abort("Abort testing: Your Rails environment is running in production mode!") if Rails.env.production? require 'test/unit' require 'active_support/core_ext/kernel/requires' |