From: Tom Hughes Date: Tue, 7 Dec 2010 21:57:20 +0000 (+0000) Subject: Removed extension from assert_template calls X-Git-Tag: live~6153 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d63d49b96765faa956a14d5ebabff839dc006356 Removed extension from assert_template calls --- 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