From 0f160628f64d2db7737cdb07f256352fb0c4858f Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 24 Sep 2011 04:19:26 +0000 Subject: [PATCH] remove hard-coded '.rxml' from "test_index_atom_feed" of functional activities controller test (#6317) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7485 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/activities_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/activities_controller_test.rb b/test/functional/activities_controller_test.rb index 4edc4b331..f6a2b6e8e 100644 --- a/test/functional/activities_controller_test.rb +++ b/test/functional/activities_controller_test.rb @@ -78,7 +78,7 @@ class ActivitiesControllerTest < ActionController::TestCase def test_index_atom_feed get :index, :format => 'atom' assert_response :success - assert_template 'common/feed.atom.rxml' + assert_template 'common/feed.atom' assert_tag :tag => 'entry', :child => { :tag => 'link', :attributes => {:href => 'http://test.host/issues/11'}}