From: Andy Allan Date: Thu, 17 Nov 2016 10:49:52 +0000 (+0000) Subject: Fix spelling of propagate. X-Git-Tag: live~3695^2~1 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/2f9ed9101a6aba23026d37bc6257b1c7afbfdcbe Fix spelling of propagate. --- diff --git a/test/controllers/old_node_controller_test.rb b/test/controllers/old_node_controller_test.rb index 1fa82717a..1f8ffc3ff 100644 --- a/test/controllers/old_node_controller_test.rb +++ b/test/controllers/old_node_controller_test.rb @@ -90,8 +90,8 @@ class OldNodeControllerTest < ActionController::TestCase xml_node = xml_doc.find("//osm/node").first nodeid = current_nodes(:node_with_versions).id - # Ensure that the current tags are propogated to the history too - propogate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4)) + # Ensure that the current tags are propagated to the history too + propagate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4)) # keep a hash of the versions => string, as we'll need something # to test against later @@ -164,11 +164,11 @@ class OldNodeControllerTest < ActionController::TestCase # Test that getting the current version is identical to picking # that version with the version URI call. def test_current_version - propogate_tags(current_nodes(:visible_node), nodes(:visible_node)) - propogate_tags(current_nodes(:used_node_1), nodes(:used_node_1)) - propogate_tags(current_nodes(:used_node_2), nodes(:used_node_2)) - propogate_tags(current_nodes(:node_used_by_relationship), nodes(:node_used_by_relationship)) - propogate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4)) + propagate_tags(current_nodes(:visible_node), nodes(:visible_node)) + propagate_tags(current_nodes(:used_node_1), nodes(:used_node_1)) + propagate_tags(current_nodes(:used_node_2), nodes(:used_node_2)) + propagate_tags(current_nodes(:node_used_by_relationship), nodes(:node_used_by_relationship)) + propagate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4)) check_current_version(current_nodes(:visible_node)) check_current_version(current_nodes(:used_node_1)) @@ -387,7 +387,7 @@ class OldNodeControllerTest < ActionController::TestCase (f * GeoRecord::SCALE).round.to_f / GeoRecord::SCALE end - def propogate_tags(node, old_node) + def propagate_tags(node, old_node) node.tags.each do |k, v| create(:old_node_tag, :old_node => old_node, :k => k, :v => v) end diff --git a/test/controllers/old_way_controller_test.rb b/test/controllers/old_way_controller_test.rb index a15f6bad5..e5cb752cd 100644 --- a/test/controllers/old_way_controller_test.rb +++ b/test/controllers/old_way_controller_test.rb @@ -46,9 +46,9 @@ class OldWayControllerTest < ActionController::TestCase ## # check that we can retrieve versions of a way def test_version - propogate_tags(current_ways(:visible_way), ways(:visible_way)) - propogate_tags(current_ways(:used_way), ways(:used_way)) - propogate_tags(current_ways(:way_with_versions), ways(:way_with_versions_v4)) + propagate_tags(current_ways(:visible_way), ways(:visible_way)) + propagate_tags(current_ways(:used_way), ways(:used_way)) + propagate_tags(current_ways(:way_with_versions), ways(:way_with_versions_v4)) check_current_version(current_ways(:visible_way).id) check_current_version(current_ways(:used_way).id) @@ -281,7 +281,7 @@ class OldWayControllerTest < ActionController::TestCase post :redact, :id => way.way_id, :version => way.version, :redaction => redaction.id end - def propogate_tags(way, old_way) + def propagate_tags(way, old_way) way.tags.each do |k, v| create(:old_way_tag, :old_way => old_way, :k => k, :v => v) end