diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-17 19:57:32 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-17 19:57:32 +0000 |
commit | 0e0b8e0799695c631d7ececa23ce941701069a46 (patch) | |
tree | fa9213b4902949c2b2e4d1ae4804535edb3b3123 /test | |
parent | 194dab8e96f632c457e49cce60611c30af68ef5b (diff) | |
download | redmine-0e0b8e0799695c631d7ececa23ce941701069a46.tar.gz redmine-0e0b8e0799695c631d7ececa23ce941701069a46.zip |
Accept issue links inside brackets (#4418).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3598 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/helpers/application_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 11bbe908d..656d05f8c 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -158,7 +158,7 @@ RAW to_test = { # tickets - '#3, #3 and #3.' => "#{issue_link}, #{issue_link} and #{issue_link}.", + '#3, [#3], (#3) and #3.' => "#{issue_link}, [#{issue_link}], (#{issue_link}) and #{issue_link}.", # changesets 'r1' => changeset_link, 'r1.' => "#{changeset_link}.", |