From 43a31e2ca7192d85cccfe2545e51c5f9f26f6b11 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 4 Oct 2011 11:08:24 +0000 Subject: [PATCH] remove hard-coded '.rxml' from 'test_index_atom' at functional projects controller test (#6317) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7574 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/projects_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb index 6125745db..fa35df7de 100644 --- a/test/functional/projects_controller_test.rb +++ b/test/functional/projects_controller_test.rb @@ -55,7 +55,7 @@ class ProjectsControllerTest < ActionController::TestCase def test_index_atom get :index, :format => 'atom' assert_response :success - assert_template 'common/feed.atom.rxml' + assert_template 'common/feed.atom' assert_select 'feed>title', :text => 'Redmine: Latest projects' assert_select 'feed>entry', :count => Project.count(:conditions => Project.visible_condition(User.current)) end