summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-02 00:14:31 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-02 00:14:31 +0000
commit2088626b8eb8db0c980eb6257bab68c1eba86a6b (patch)
treef42cc71f0e796d71f545cc06e20ed0a9edd75100
parent62b42671c6807324c69cce84d686ac692d6793c2 (diff)
downloadredmine-2088626b8eb8db0c980eb6257bab68c1eba86a6b.tar.gz
redmine-2088626b8eb8db0c980eb6257bab68c1eba86a6b.zip
remove hard-coded '.rhtml' from "test_index_with_project_and_empty_filters" of functional issues controller test (#6317).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7029 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/functional/issues_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 8bed74ede..b98953460 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -158,7 +158,7 @@ class IssuesControllerTest < ActionController::TestCase
def test_index_with_project_and_empty_filters
get :index, :project_id => 1, :set_filter => 1, :fields => ['']
assert_response :success
- assert_template 'index.rhtml'
+ assert_template 'index'
assert_not_nil assigns(:issues)
query = assigns(:query)