Skip to content

Commit

Permalink
Fix raise_on_missing_translations deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andysellick committed Feb 1, 2021
1 parent 8d5285a commit 931b299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/dummy/config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
config.assets.quiet = true

# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
# config.i18n.raise_on_missing_translations = true

# Use an evented file watcher to asynchronously detect changes in source code,
# routes, locales, etc. This feature depends on the listen gem.
Expand Down
2 changes: 1 addition & 1 deletion spec/dummy/config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
config.active_support.deprecation = :stderr

# Raises error for missing translations
config.action_view.raise_on_missing_translations = true
config.i18n.raise_on_missing_translations = true

config.assets.digest = false

Expand Down

0 comments on commit 931b299

Please sign in to comment.