]> source.dussan.org Git - redmine.git/commitdiff
scm: mercurial: fix revision at functional diff test.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 15 Jan 2011 10:15:41 +0000 (10:15 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 15 Jan 2011 10:15:41 +0000 (10:15 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4718 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/repositories_mercurial_controller_test.rb

index 85203380a8ba7e7f61ddff98e6474bb30d30eb1d..d48c7909e674a68559d36525c1623985c79e16fe 100644 (file)
@@ -44,7 +44,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
       assert_not_nil assigns(:entries)
       assert_not_nil assigns(:changesets)
     end
-    
+
     def test_show_root
       get :show, :id => 3
       assert_response :success
@@ -55,7 +55,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
       assert assigns(:entries).detect {|e| e.name == 'sources' && e.kind == 'dir'}
       assert assigns(:entries).detect {|e| e.name == 'README'  && e.kind == 'file'}
     end
-    
+
     def test_show_directory
       get :show, :id => 3, :path => ['images']
       assert_response :success
@@ -133,7 +133,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
 
       [4, '4', 'def6d2f1254a'].each do |r1|
         # Full diff of changeset 4
-        get :diff, :id => 3, :rev => 4
+        get :diff, :id => 3, :rev => r1
         assert_response :success
         assert_template 'diff'