diff options
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index c68bc22689..2ecee12d01 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* When a NonInferrableControllerError is raised, make the proposed fix clearer in the error message. Closes #10199 [danger] + * Update Prototype to 1.6.0.1. [sam] * Update script.aculo.us to 1.8.0.1. [madrobby] diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index 35aad0d8bf..d81cb5dae3 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -4,7 +4,7 @@ module ActionController class NonInferrableControllerError < ActionControllerError def initialize(name) super "Unable to determine the controller to test from #{name}. " + - "You'll need to specify it using tests YourController in your " + + "You'll need to specify it using 'tests YourController' in your " + "test case definition" end end |