From 596c1e3610d692098a98df67f07343b2d794c3d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Alix?= Date: Wed, 30 Nov 2022 11:55:43 +0100 Subject: [PATCH] [FIX] mrp_unbuild_valuation_layer_link: fix wobbly tests --- .../tests/test_mrp__unbuild_valuation_layer_link.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mrp_unbuild_valuation_layer_link/tests/test_mrp__unbuild_valuation_layer_link.py b/mrp_unbuild_valuation_layer_link/tests/test_mrp__unbuild_valuation_layer_link.py index 18dd4e56e..912cd2799 100644 --- a/mrp_unbuild_valuation_layer_link/tests/test_mrp__unbuild_valuation_layer_link.py +++ b/mrp_unbuild_valuation_layer_link/tests/test_mrp__unbuild_valuation_layer_link.py @@ -53,8 +53,8 @@ class TestUnbuild(TestMrpCommon): "You should access to the model stock.valuation.layer", ) self.assertEqual( - difference_layers, - unbuild_valuation_layers, + sorted(difference_layers), + sorted(unbuild_valuation_layers), "You should have as domain the ids of the stock valuation belonging " "to the ids of the stock moves of produce_line and consume_line", )