From 1df5bd247f316122a2401449fe987b5e1fbef175 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 10 May 2017 10:51:49 +0100 Subject: [PATCH] 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. --- test/factories/node.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.43.2