diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 14:34:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 14:34:23 +0000 |
commit | 8a54c455b808eb6a5477f57b61b6f50a23d3347e (patch) | |
tree | 91e3705cb7d20946e13125edd433e651c46e1403 | |
parent | 5051566e51a30cbc3776e84774d492b24abb03d6 (diff) | |
download | redmine-8a54c455b808eb6a5477f57b61b6f50a23d3347e.tar.gz redmine-8a54c455b808eb6a5477f57b61b6f50a23d3347e.zip |
Fixes test broken by r1549.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1550 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/repositories_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/repositories_controller_test.rb b/test/functional/repositories_controller_test.rb index 47455dc55..2892f3bd1 100644 --- a/test/functional/repositories_controller_test.rb +++ b/test/functional/repositories_controller_test.rb @@ -43,10 +43,10 @@ class RepositoriesControllerTest < Test::Unit::TestCase assert_response :success assert_template 'revision' assert_no_tag :tag => "div", :attributes => { :class => "contextual" }, - :child => { :tag => "a", :attributes => { :href => '/repositories/revision/ecookbook?rev=0'} + :child => { :tag => "a", :attributes => { :href => '/repositories/revision/ecookbook/0'} } assert_tag :tag => "div", :attributes => { :class => "contextual" }, - :child => { :tag => "a", :attributes => { :href => '/repositories/revision/ecookbook?rev=2'} + :child => { :tag => "a", :attributes => { :href => '/repositories/revision/ecookbook/2'} } end |