diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-14 08:13:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-14 08:13:55 +0000 |
commit | 18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1 (patch) | |
tree | 7b5be61fb040bb64bdaff1726a746fe82e149810 /test/integration/api_test/issues_test.rb | |
parent | 6bf60e8c206b3c75d18c824cb8b98b10a6d6a69c (diff) | |
download | redmine-18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1.tar.gz redmine-18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1.zip |
Fixed that 200 API responses have a body containing one space (#11388).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9975 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/api_test/issues_test.rb')
-rw-r--r-- | test/integration/api_test/issues_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/api_test/issues_test.rb b/test/integration/api_test/issues_test.rb index 9dece8354..9b25bc178 100644 --- a/test/integration/api_test/issues_test.rb +++ b/test/integration/api_test/issues_test.rb @@ -770,6 +770,7 @@ class ApiTest::IssuesTest < ActionController::IntegrationTest {:issue => {:notes => 'Attachment added', :uploads => [{:token => token, :filename => 'test.txt', :content_type => 'text/plain'}]}}, credentials('jsmith') assert_response :ok + assert_equal '', @response.body end issue = Issue.find(1) |