diff options
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |