diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 12:07:42 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-12 12:07:42 +0000 |
commit | 01f4caad45d55c90fa4c263303b18cf57ba27d0e (patch) | |
tree | 5bc86675270dc657831a3ef4f6f6ffd6e33572ae | |
parent | 93d5da4e53b8f9b688d18b05922f90e6b9bcb26a (diff) | |
download | redmine-01f4caad45d55c90fa4c263303b18cf57ba27d0e.tar.gz redmine-01f4caad45d55c90fa4c263303b18cf57ba27d0e.zip |
scm: subversion: code clean up test_entry_should_send_if_too_big at functional test
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7185 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/repositories_subversion_controller_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/repositories_subversion_controller_test.rb b/test/functional/repositories_subversion_controller_test.rb index 6d0fc5a98..6e17187ee 100644 --- a/test/functional/repositories_subversion_controller_test.rb +++ b/test/functional/repositories_subversion_controller_test.rb @@ -145,7 +145,8 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase get :entry, :id => PRJ_ID, :path => ['subversion_test', 'helloworld.c'] assert_response :success assert_template '' - assert_equal 'attachment; filename="helloworld.c"', @response.headers['Content-Disposition'] + assert_equal 'attachment; filename="helloworld.c"', + @response.headers['Content-Disposition'] end end |