]> git.openstreetmap.org Git - rails.git/commitdiff
Ensure the old nodes are created with the same changeset
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 10 May 2017 09:51:49 +0000 (10:51 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 10 May 2017 10:51:43 +0000 (11:51 +0100)
Not often important, but the most recent old_node should definitely
have the same changeset as the node itself.

test/factories/node.rb

index cbebbb00986096245b972bafa98223472199198c..bcc1fdbe810d00d3910408854d4dd72fb8c6c392 100644 (file)
@@ -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.