From 4edf9138b3a64f825cae967889a5d70295e36c98 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Thu, 16 Nov 2023 12:50:23 -0300 Subject: [PATCH] [Tests][Position][Fixed] Now R3 has fields and doesn't match --- tests/test_plot/test_position.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plot/test_position.py b/tests/test_plot/test_position.py index 5b96da99..2b5b30a8 100644 --- a/tests/test_plot/test_position.py +++ b/tests/test_plot/test_position.py @@ -217,7 +217,7 @@ def test_position_variant_t2i(test_dir): rows, header, info = ctx.load_csv(files[0]) check_comps(rows, ['R1', 'R2', 'R3']) rows, header, info = ctx.load_csv(files[1]) - check_comps(rows, ['R1', 'R2', 'R3']) + check_comps(rows, ['R1', 'R2']) rows, header, info = ctx.load_csv(files[2]) check_comps(rows, ['C2', 'R1', 'R2', 'R3']) rows, header, info = ctx.load_csv(files[3])