From: Andy Allan Date: Wed, 10 May 2017 09:51:49 +0000 (+0100) Subject: Ensure the old nodes are created with the same changeset X-Git-Tag: live~3453^2~3 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/1df5bd247f316122a2401449fe987b5e1fbef175 Ensure the old nodes are created with the same changeset Not often important, but the most recent old_node should definitely have the same changeset as the node itself. --- diff --git a/test/factories/node.rb b/test/factories/node.rb index cbebbb009..bcc1fdbe8 100644 --- a/test/factories/node.rb +++ b/test/factories/node.rb @@ -16,7 +16,7 @@ FactoryGirl.define do trait :with_history do after(:create) do |node, _evaluator| (1..node.version).each do |n| - create(:old_node, :node_id => node.id, :version => n) + create(:old_node, :node_id => node.id, :version => n, :changeset => node.changeset) end # For deleted nodes, make sure the most recent old_node is also deleted.