summaryrefslogtreecommitdiffstats
path: root/test/unit/helpers/issues_helper_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-20 14:22:50 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-12-20 14:22:50 +0000
commitf86d4940e11f541cbb5244848025dad471457649 (patch)
tree5dbdab6ae443c792d96c0aae53d06c4590b33ab1 /test/unit/helpers/issues_helper_test.rb
parentb35ed2ea2b21d7673f6706dd04166438b42bf046 (diff)
downloadredmine-f86d4940e11f541cbb5244848025dad471457649.tar.gz
redmine-f86d4940e11f541cbb5244848025dad471457649.zip
Removed that quote in a fixture subject.
git-svn-id: http://svn.redmine.org/redmine/trunk@13775 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers/issues_helper_test.rb')
-rw-r--r--test/unit/helpers/issues_helper_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb
index 273755338..cf681882c 100644
--- a/test/unit/helpers/issues_helper_test.rb
+++ b/test/unit/helpers/issues_helper_test.rb
@@ -215,9 +215,9 @@ class IssuesHelperTest < ActionView::TestCase
detail = JournalDetail.new(:property => 'relation',
:prop_key => 'precedes',
:value => 1)
- assert_equal "Precedes Bug #1: Can't print recipes added", show_detail(detail, true)
+ assert_equal "Precedes Bug #1: Cannot print recipes added", show_detail(detail, true)
str = link_to("Bug #1", "/issues/1", :class => Issue.find(1).css_classes)
- assert_equal "<strong>Precedes</strong> <i>#{str}: #{ESCAPED_UCANT} print recipes</i> added",
+ assert_equal "<strong>Precedes</strong> <i>#{str}: Cannot print recipes</i> added",
show_detail(detail, false)
end
@@ -245,11 +245,11 @@ class IssuesHelperTest < ActionView::TestCase
detail = JournalDetail.new(:property => 'relation',
:prop_key => 'precedes',
:old_value => 1)
- assert_equal "Precedes deleted (Bug #1: Can't print recipes)", show_detail(detail, true)
+ assert_equal "Precedes deleted (Bug #1: Cannot print recipes)", show_detail(detail, true)
str = link_to("Bug #1",
"/issues/1",
:class => Issue.find(1).css_classes)
- assert_equal "<strong>Precedes</strong> deleted (<i>#{str}: #{ESCAPED_UCANT} print recipes</i>)",
+ assert_equal "<strong>Precedes</strong> deleted (<i>#{str}: Cannot print recipes</i>)",
show_detail(detail, false)
end