From d63d49b96765faa956a14d5ebabff839dc006356 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 7 Dec 2010 21:57:20 +0000 Subject: [PATCH] Removed extension from assert_template calls --- test/integration/user_creation_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/user_creation_test.rb b/test/integration/user_creation_test.rb index fd00f4d71..c9b71e3ca 100644 --- a/test/integration/user_creation_test.rb +++ b/test/integration/user_creation_test.rb @@ -133,7 +133,7 @@ class UserCreationTest < ActionController::IntegrationTest assert_response :redirect # but it not redirects to /user//traces follow_redirect! assert_response :success - assert_template "trace/list.html.erb" + assert_template 'trace/list' end def test_user_create_openid_success @@ -228,6 +228,6 @@ class UserCreationTest < ActionController::IntegrationTest assert_response :redirect # but it not redirects to /user//traces follow_redirect! assert_response :success - assert_template "trace/list.html.erb" + assert_template "trace/list" end end -- 2.43.2