diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-25 20:42:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-25 20:42:31 +0000 |
commit | 4f153083ac008f2da1ee5667f45ff66e7a748420 (patch) | |
tree | 65ae91fefcf5931871fda77cf2f841bb497aa2fe /test | |
parent | 4f31027f08f55a0c6cf529cc4137b570aad46012 (diff) | |
download | redmine-4f153083ac008f2da1ee5667f45ff66e7a748420.tar.gz redmine-4f153083ac008f2da1ee5667f45ff66e7a748420.zip |
Removed assertions on blank template.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9008 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/repositories_subversion_controller_test.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/repositories_subversion_controller_test.rb b/test/functional/repositories_subversion_controller_test.rb index d6a7e2460..419d6dc39 100644 --- a/test/functional/repositories_subversion_controller_test.rb +++ b/test/functional/repositories_subversion_controller_test.rb @@ -163,7 +163,6 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase get :entry, :id => PRJ_ID, :path => repository_path_hash(['subversion_test', 'helloworld.c'])[:param] assert_response :success - assert_template '' assert_equal 'attachment; filename="helloworld.c"', @response.headers['Content-Disposition'] end @@ -204,7 +203,6 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase :path => repository_path_hash(['subversion_test', 'helloworld.c'])[:param], :format => 'raw' assert_response :success - assert_template '' assert_equal 'attachment; filename="helloworld.c"', @response.headers['Content-Disposition'] end |