aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/config/environments/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'guides/code/getting_started/config/environments/test.rb')
-rw-r--r--guides/code/getting_started/config/environments/test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/code/getting_started/config/environments/test.rb b/guides/code/getting_started/config/environments/test.rb
index 00adaa5015..680d0b9e06 100644
--- a/guides/code/getting_started/config/environments/test.rb
+++ b/guides/code/getting_started/config/environments/test.rb
@@ -1,4 +1,4 @@
-Blog::Application.configure do
+Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# The test environment is used exclusively to run your application's
@@ -14,7 +14,7 @@ Blog::Application.configure do
# Configure static asset server for tests with Cache-Control for performance.
config.serve_static_assets = true
- config.static_cache_control = "public, max-age=3600"
+ config.static_cache_control = 'public, max-age=3600'
# Show full error reports and disable caching.
config.consider_all_requests_local = true