summaryrefslogtreecommitdiffstats
path: root/test/functional/wiki_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-21 21:13:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-21 21:13:06 +0000
commit7b12145ed904e531fa4e573cb5efb50abdedf6ac (patch)
tree4be4fb23985aa6371bebb3e185aa300e9915f816 /test/functional/wiki_controller_test.rb
parent5882629e26abcc6dcf7d1f0a0e62982ea1a308ca (diff)
downloadredmine-7b12145ed904e531fa4e573cb5efb50abdedf6ac.tar.gz
redmine-7b12145ed904e531fa4e573cb5efb50abdedf6ac.zip
Raises wiki edits comments limit to 1024 (#19886).
git-svn-id: http://svn.redmine.org/redmine/trunk@14622 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/wiki_controller_test.rb')
-rw-r--r--test/functional/wiki_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb
index 9bffe66c7..5471fcf21 100644
--- a/test/functional/wiki_controller_test.rb
+++ b/test/functional/wiki_controller_test.rb
@@ -319,7 +319,7 @@ class WikiControllerTest < ActionController::TestCase
put :update, :project_id => 1,
:id => 'Another_page',
:content => {
- :comments => 'a' * 300, # failure here, comment is too long
+ :comments => 'a' * 1300, # failure here, comment is too long
:text => 'edited'
},
:wiki_page => {