]> git.openstreetmap.org Git - rails.git/commitdiff
Remove some old debugging comments
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 21 Dec 2022 12:05:15 +0000 (12:05 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 21 Dec 2022 12:05:15 +0000 (12:05 +0000)
test/controllers/api/changesets_controller_test.rb
test/controllers/diary_entries_controller_test.rb
test/controllers/users_controller_test.rb
test/integration/user_diaries_test.rb
test/models/way_test.rb

index 9470ec0bbec5ee396065c7a27573911e4031ea9d..979b5d8af9db0028ae395dd15fc9bd39b98a7ff1 100644 (file)
@@ -1768,7 +1768,7 @@ module Api
       get changeset_download_path(changeset)
 
       assert_response :success
-      # print @response.body
+
       # FIXME: needs more assert_select tests
       assert_select "osmChange[version='#{Settings.api_version}'][generator='#{Settings.generator}']" do
         assert_select "create", :count => 5
index b1e9b72f2ba5dc48cef62358286a12421acc9485..2003f9a085963ae717ffad02c795af678bb856cb 100644 (file)
@@ -325,7 +325,6 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest
       assert_select "p", :text => /#{new_body}/, :count => 1
       assert_select "abbr[class='geo'][title='#{number_with_precision(new_latitude, :precision => 4)}; #{number_with_precision(new_longitude, :precision => 4)}']", :count => 1
       # As we're not logged in, check that you cannot edit
-      # print @response.body
       assert_select "a[href='/user/#{ERB::Util.u(entry.user.display_name)}/diary/#{entry.id}/edit']", :text => "Edit this entry", :count => 1
     end
 
index 634b279a5857ec134a59502cbdef1a37c64a3f86..9358a5948ce205cc1e38bc11dc659b0c5e1a6fb6 100644 (file)
@@ -529,7 +529,6 @@ class UsersControllerTest < ActionDispatch::IntegrationTest
 
     get user_path(seen_user)
     assert_response :success
-    # put @response.body
     assert_select "div.content-heading" do
       assert_select "dt", :count => 1, :text => /Contributor terms/
       assert_select "dd", /Declined/
index 0b3ee930de52193b59c5e37cbfcdda2c009abef9..57a98823bafd607156e481b10775575c34a2fb29 100644 (file)
@@ -15,7 +15,7 @@ class UserDiariesTest < ActionDispatch::IntegrationTest
     # We can now login
     post "/login", :params => { "username" => user.email, "password" => "test", :referer => "/diary/new" }
     assert_response :redirect
-    # print @response.body
+
     # Check that there is some payload alerting the user to the redirect
     # and allowing them to get to the page they are being directed to
     assert_select "html:root" do
@@ -30,8 +30,6 @@ class UserDiariesTest < ActionDispatch::IntegrationTest
 
     assert_response :success
     assert_template "diary_entries/new"
-    # print @response.body
-    # print @html_document.to_yaml
 
     # We will make sure that the form exists here, full
     # assert testing of the full form should be done in the
index 420eb42a891ab5d3397942e4b021c0330ad77983..8674b37904d0110f49ef2b9210761672aaeaa8b3 100644 (file)
@@ -34,7 +34,6 @@ class WayTest < ActiveSupport::TestCase
       way.add_nd_num(node_b.id)
     end
     way.save
-    # print way.nds.size
     assert_predicate way, :valid?
     way.add_nd_num(node_c.id)
     assert_predicate way, :valid?