summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-02-19 17:46:24 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-02-19 17:46:24 +0000
commit0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf (patch)
tree73cc653fdd73641cda63442ade889ef89d869892 /test/integration
parentd750c9906ef7ad35abae516d3a39dee073b7b2d0 (diff)
downloadredmine-0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf.tar.gz
redmine-0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf.zip
Send a better content type than application/octet-stream (#19131).
git-svn-id: http://svn.redmine.org/redmine/trunk@14034 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/api_test/attachments_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/api_test/attachments_test.rb b/test/integration/api_test/attachments_test.rb
index d4b483527..0f7e6ebdb 100644
--- a/test/integration/api_test/attachments_test.rb
+++ b/test/integration/api_test/attachments_test.rb
@@ -65,7 +65,7 @@ class Redmine::ApiTest::AttachmentsTest < Redmine::ApiTest::Base
test "GET /attachments/download/:id/:filename should return the attachment content" do
get '/attachments/download/7/archive.zip', {}, credentials('jsmith')
assert_response :success
- assert_equal 'application/octet-stream', @response.content_type
+ assert_equal 'application/zip', @response.content_type
set_tmp_attachments_directory
end