summaryrefslogtreecommitdiffstats
path: root/test/unit/repository_subversion_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-01-11 15:23:22 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-01-11 15:23:22 +0000
commite92cd2091cbb251f0cc27e2aabb7058db40c7f00 (patch)
tree016d500b36ce5f6b17bf32489fb09b7ea581e00d /test/unit/repository_subversion_test.rb
parent6a6b68d29515cea7c83a8651cfc9b5d7490a6f4c (diff)
downloadredmine-e92cd2091cbb251f0cc27e2aabb7058db40c7f00.tar.gz
redmine-e92cd2091cbb251f0cc27e2aabb7058db40c7f00.zip
scm: fix assert_equal parameter order in subversion and git unit test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4691 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_subversion_test.rb')
-rw-r--r--test/unit/repository_subversion_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/repository_subversion_test.rb b/test/unit/repository_subversion_test.rb
index c61431b33..46a4ad74a 100644
--- a/test/unit/repository_subversion_test.rb
+++ b/test/unit/repository_subversion_test.rb
@@ -119,14 +119,14 @@ class RepositorySubversionTest < ActiveSupport::TestCase
c = Changeset.new(:repository => @repository, :committed_on => Time.now,
:revision => '1', :comments => 'test')
assert c.event_title.include?('1:')
- assert_equal c.event_url[:rev], '1'
+ assert_equal '1', c.event_url[:rev]
end
def test_activities_nine_digit
c = Changeset.new(:repository => @repository, :committed_on => Time.now,
:revision => '123456789', :comments => 'test')
assert c.event_title.include?('123456789:')
- assert_equal c.event_url[:rev], '123456789'
+ assert_equal '123456789', c.event_url[:rev]
end
else
puts "Subversion test repository NOT FOUND. Skipping unit tests !!!"