diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-08-18 22:04:10 -0600 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-08-18 22:04:10 -0600 |
commit | 79d8fb7cfe06f5ab4437d9779cfe47f9f3df5b52 (patch) | |
tree | a5a934bfe9a8c6d961222ac5f6922291a6a887a7 /guides | |
parent | dfeeecd2f3bde70f22174843ccfc594610b4eebc (diff) | |
download | rails-79d8fb7cfe06f5ab4437d9779cfe47f9f3df5b52.tar.gz rails-79d8fb7cfe06f5ab4437d9779cfe47f9f3df5b52.tar.bz2 rails-79d8fb7cfe06f5ab4437d9779cfe47f9f3df5b52.zip |
require 'test_help' -> require 'rails/test_help'
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 386412e37c..4b421633e2 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -197,7 +197,7 @@ secrets, you need to: If your test helper contains a call to `ActiveRecord::Migration.check_pending!` this can be removed. The check -is now done automatically when you `require 'test_help'`, although +is now done automatically when you `require 'rails/test_help'`, although leaving this line in your helper is not harmful in any way. ### Cookies serializer |