diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b470db9d36675ffcef0b7e1434a08c3be7f407..6255ff1c0286f518b9dbd333bd3f61dd690e5cb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### * #53 Documentation of inheritance +* #38 Dependencies in chunk-deletion of containers ### Security ### diff --git a/unittests/test_container.py b/unittests/test_container.py index 2e8dfa2a9b4538f854d79ad08f4500c11bf68945..0ac4be44826825aa3302119c8bca08f335ab68d3 100644 --- a/unittests/test_container.py +++ b/unittests/test_container.py @@ -99,7 +99,9 @@ def test_container_dependencies_for_deletion(): record_referenced.id = 2002 record_with_dependencies = db.Record().add_parent(not_included_rt) record_with_dependencies.id = 2004 - record_with_dependencies.add_property(not_included_rt, record_referenced) + record_with_dependencies.add_property(not_included_rt, + record_referenced, + datatype="not_included_rt") record_with_parent = db.Record().add_parent(rt_record_with_parent) record_with_parent.id = 2005