diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-05 11:03:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-05 11:03:26 +0000 |
commit | aa9238912b97ae5d3e508294fb9cf9178c484b4a (patch) | |
tree | 4c396ab656d4f05783ea8b1062ba6ef48d08b561 /test/unit/repository_test.rb | |
parent | 97ca65d1b217068198e9f66d1dbc5e8e7db93b38 (diff) | |
download | redmine-aa9238912b97ae5d3e508294fb9cf9178c484b4a.tar.gz redmine-aa9238912b97ae5d3e508294fb9cf9178c484b4a.zip |
Changed assertions to make them work with Rails2/3 ruby1.8/1.9 different behaviours.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9108 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_test.rb')
-rw-r--r-- | test/unit/repository_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/repository_test.rb b/test/unit/repository_test.rb index 96f0ceeee..1fe246d8e 100644 --- a/test/unit/repository_test.rb +++ b/test/unit/repository_test.rb @@ -132,8 +132,8 @@ class RepositoryTest < ActiveSupport::TestCase repository = Repository::Subversion.new( :project => Project.find(3), :url => "svn://localhost") assert !repository.save - assert_equal I18n.translate('activerecord.errors.messages.invalid'), - repository.errors[:type].to_s + assert_include I18n.translate('activerecord.errors.messages.invalid'), + repository.errors[:type] end end |