diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2010-09-06 20:47:25 +0200 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2010-09-08 19:27:59 +0200 |
commit | 18aee333359a4dea6847754f3055ce223aa2474c (patch) | |
tree | 1593b92ca59e5398151fe6e786b197b33cbc9736 /actionpack/test/dispatch | |
parent | a5d894ce566a21ec4c5db9df06be7f22a1690691 (diff) | |
download | rails-18aee333359a4dea6847754f3055ce223aa2474c.tar.gz rails-18aee333359a4dea6847754f3055ce223aa2474c.tar.bz2 rails-18aee333359a4dea6847754f3055ce223aa2474c.zip |
Do not require passing :app to mounted helpers, it's actually useless and not DRY
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/prefix_generation_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/prefix_generation_test.rb b/actionpack/test/dispatch/prefix_generation_test.rb index 3b47a1b72d..1e2df682b3 100644 --- a/actionpack/test/dispatch/prefix_generation_test.rb +++ b/actionpack/test/dispatch/prefix_generation_test.rb @@ -72,7 +72,7 @@ module TestGenerationPrefix class ::InsideEngineGeneratingController < ActionController::Base include BlogEngine.routes.url_helpers - include RailsApplication.routes.mounted_helpers(:app) + include RailsApplication.routes.mounted_helpers def index render :text => posts_path |