Skip to content
Snippets Groups Projects
Commit bc06456f authored by florian's avatar florian
Browse files

FIX: Add missing datatype in container test

parent e5654a4c
No related branches found
No related tags found
1 merge request!33MAINT: change arguments of create_user
Pipeline #10143 passed with warnings
...@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### ### Fixed ###
* #53 Documentation of inheritance * #53 Documentation of inheritance
* #38 Dependencies in chunk-deletion of containers
### Security ### ### Security ###
......
...@@ -99,7 +99,9 @@ def test_container_dependencies_for_deletion(): ...@@ -99,7 +99,9 @@ def test_container_dependencies_for_deletion():
record_referenced.id = 2002 record_referenced.id = 2002
record_with_dependencies = db.Record().add_parent(not_included_rt) record_with_dependencies = db.Record().add_parent(not_included_rt)
record_with_dependencies.id = 2004 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 = db.Record().add_parent(rt_record_with_parent)
record_with_parent.id = 2005 record_with_parent.id = 2005
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment