From 34c0678e2d1484226ea571be67ad5974cd3e280e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Wed, 15 Feb 2023 22:07:06 +0100
Subject: [PATCH] FIX: fix unittest

---
 unittests/test_scalars_cfood.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/unittests/test_scalars_cfood.py b/unittests/test_scalars_cfood.py
index 5e5bc998..5780219c 100644
--- a/unittests/test_scalars_cfood.py
+++ b/unittests/test_scalars_cfood.py
@@ -48,7 +48,6 @@ def test_record_structure_generation(crawler):
     else:
         subddata = subd[1]
         subdRTGPL = subd[0]
-    print(subddata.keys())
     assert len(subddata) == 5
     assert "DataAnalysis" in subddata
     assert "DataAnalysis_path" in subddata
@@ -60,6 +59,6 @@ def test_record_structure_generation(crawler):
     assert prop.value == 23
 
     # record store on Data Analysis node of debug tree
-    assert len(subdRTGPL) == 2
+    assert len(subdRTGPL) == 1
     prop2 = subdRTGPL["RecordThatGetsParentsLater"].get_property("someId")
     assert prop == prop2
-- 
GitLab