From: Tom Hughes Date: Sun, 5 Feb 2017 17:25:54 +0000 (+0000) Subject: Cleanup double comment markers X-Git-Tag: live~3583 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/71c2fc671f2639d515a4f512de09a004d7990b6a Cleanup double comment markers --- diff --git a/test/controllers/trace_controller_test.rb b/test/controllers/trace_controller_test.rb index 85644b663..616d25fc2 100644 --- a/test/controllers/trace_controller_test.rb +++ b/test/controllers/trace_controller_test.rb @@ -245,7 +245,7 @@ class TraceControllerTest < ActionController::TestCase get :list, { :display_name => users(:public_user).display_name }, { :user => users(:public_user).id } check_trace_list [trace_c, trace_b] - # # Should only see traces with the correct tag when a tag is specified + # Should only see traces with the correct tag when a tag is specified get :list, { :display_name => users(:public_user).display_name, :tag => "London" }, { :user => users(:public_user).id } check_trace_list [trace_c] @@ -722,7 +722,7 @@ class TraceControllerTest < ActionController::TestCase get :api_data, :display_name => users(:normal_user).display_name, :id => public_trace_file.id check_trace_data public_trace_file - # # And finally we should be able to do it with the owner of the trace + # And finally we should be able to do it with the owner of the trace basic_authorization(users(:normal_user).display_name, "test") get :api_data, :display_name => users(:normal_user).display_name, :id => public_trace_file.id check_trace_data public_trace_file @@ -744,7 +744,7 @@ class TraceControllerTest < ActionController::TestCase get :api_data, :display_name => users(:public_user).display_name, :id => identifiable_trace_file.id, :format => "xml" check_trace_data identifiable_trace_file, "application/xml", "xml" - # # Now ask explicitly for GPX format + # Now ask explicitly for GPX format get :api_data, :display_name => users(:public_user).display_name, :id => identifiable_trace_file.id, :format => "gpx" check_trace_data identifiable_trace_file end