Fix spelling of propagate.

This commit is contained in:
Andy Allan 2016-11-17 10:49:52 +00:00
parent aa185bf4f8
commit 2f9ed9101a
2 changed files with 12 additions and 12 deletions

View file

@ -90,8 +90,8 @@ class OldNodeControllerTest < ActionController::TestCase
xml_node = xml_doc.find("//osm/node").first xml_node = xml_doc.find("//osm/node").first
nodeid = current_nodes(:node_with_versions).id nodeid = current_nodes(:node_with_versions).id
# Ensure that the current tags are propogated to the history too # Ensure that the current tags are propagated to the history too
propogate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4)) propagate_tags(current_nodes(:node_with_versions), nodes(:node_with_versions_v4))
# keep a hash of the versions => string, as we'll need something # keep a hash of the versions => string, as we'll need something
# to test against later # to test against later
@ -164,11 +164,11 @@ class OldNodeControllerTest < ActionController::TestCase
# Test that getting the current version is identical to picking # Test that getting the current version is identical to picking
# that version with the version URI call. # that version with the version URI call.
def test_current_version def test_current_version
propogate_tags(current_nodes(:visible_node), nodes(:visible_node)) propagate_tags(current_nodes(:visible_node), nodes(:visible_node))
propogate_tags(current_nodes(:used_node_1), nodes(:used_node_1)) propagate_tags(current_nodes(:used_node_1), nodes(:used_node_1))
propogate_tags(current_nodes(:used_node_2), nodes(:used_node_2)) propagate_tags(current_nodes(:used_node_2), nodes(:used_node_2))
propogate_tags(current_nodes(:node_used_by_relationship), nodes(:node_used_by_relationship)) propagate_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(:node_with_versions), nodes(:node_with_versions_v4))
check_current_version(current_nodes(:visible_node)) check_current_version(current_nodes(:visible_node))
check_current_version(current_nodes(:used_node_1)) check_current_version(current_nodes(:used_node_1))
@ -387,7 +387,7 @@ class OldNodeControllerTest < ActionController::TestCase
(f * GeoRecord::SCALE).round.to_f / GeoRecord::SCALE (f * GeoRecord::SCALE).round.to_f / GeoRecord::SCALE
end end
def propogate_tags(node, old_node) def propagate_tags(node, old_node)
node.tags.each do |k, v| node.tags.each do |k, v|
create(:old_node_tag, :old_node => old_node, :k => k, :v => v) create(:old_node_tag, :old_node => old_node, :k => k, :v => v)
end end

View file

@ -46,9 +46,9 @@ class OldWayControllerTest < ActionController::TestCase
## ##
# check that we can retrieve versions of a way # check that we can retrieve versions of a way
def test_version def test_version
propogate_tags(current_ways(:visible_way), ways(:visible_way)) propagate_tags(current_ways(:visible_way), ways(:visible_way))
propogate_tags(current_ways(:used_way), ways(:used_way)) propagate_tags(current_ways(:used_way), ways(:used_way))
propogate_tags(current_ways(:way_with_versions), ways(:way_with_versions_v4)) 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(:visible_way).id)
check_current_version(current_ways(:used_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 post :redact, :id => way.way_id, :version => way.version, :redaction => redaction.id
end end
def propogate_tags(way, old_way) def propagate_tags(way, old_way)
way.tags.each do |k, v| way.tags.each do |k, v|
create(:old_way_tag, :old_way => old_way, :k => k, :v => v) create(:old_way_tag, :old_way => old_way, :k => k, :v => v)
end end