diff options
author | Vipul A M <vipulnsward@gmail.com> | 2017-09-06 18:26:44 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 18:26:44 +0530 |
commit | b9ecb5797b97ba557a70efd66d2ff2c22501723f (patch) | |
tree | 6bf1bb5e06d7f12f13190c3c820fcd0ee61ffe25 /actionpack | |
parent | 18f342d82a380d5bd23c33018818224d32b69a95 (diff) | |
parent | 56ac13e8e4549c680900eab14079881f5b2a38cf (diff) | |
download | rails-b9ecb5797b97ba557a70efd66d2ff2c22501723f.tar.gz rails-b9ecb5797b97ba557a70efd66d2ff2c22501723f.tar.bz2 rails-b9ecb5797b97ba557a70efd66d2ff2c22501723f.zip |
Merge pull request #30533 from ydakuka/fix-typo-fully-qualified
fix type fully qualified [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/rescue_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/rescue_test.rb b/actionpack/test/controller/rescue_test.rb index 07f8c9dd8a..4ed79073e5 100644 --- a/actionpack/test/controller/rescue_test.rb +++ b/actionpack/test/controller/rescue_test.rb @@ -33,7 +33,7 @@ class RescueController < ActionController::Base class ResourceUnavailableToRescueAsString < StandardError end - # We use a fully-qualified name in some strings, and a relative constant + # We use a fully qualified name in some strings, and a relative constant # name in some other to test correct handling of both cases. rescue_from NotAuthorized, with: :deny_access |