summaryrefslogtreecommitdiffstats
path: root/test/unit/helpers
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-01-23 18:09:03 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-01-23 18:09:03 +0000
commit8f00d31ec6b9cb9355c501d384204712e7b59f3d (patch)
treece94ceea5706818336aa8998273e437c87dbe071 /test/unit/helpers
parente53a5de918c1db1f409df8d72a0cb5f38b4c7671 (diff)
downloadredmine-8f00d31ec6b9cb9355c501d384204712e7b59f3d.tar.gz
redmine-8f00d31ec6b9cb9355c501d384204712e7b59f3d.zip
Accommodates fixtures for databases with case sensitive sort.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11260 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers')
-rw-r--r--test/unit/helpers/issues_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb
index 1b37dbff5..73548fbc5 100644
--- a/test/unit/helpers/issues_helper_test.rb
+++ b/test/unit/helpers/issues_helper_test.rb
@@ -181,7 +181,7 @@ class IssuesHelperTest < ActionView::TestCase
should "show old and new values with a assigned to attribute" do
detail = JournalDetail.new(:property => 'attr', :prop_key => 'assigned_to_id', :old_value => 1, :value => 2)
- assert_match 'redMine Admin', show_detail(detail, true)
+ assert_match 'Redmine Admin', show_detail(detail, true)
assert_match 'John Smith', show_detail(detail, true)
end