From 2172035da7566305b06dab2b31fa915a57d8026d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-No=C3=ABl=20Grad?= Date: Fri, 19 Jul 2024 19:57:08 +0200 Subject: [PATCH] fix --- src/script_interface/tests/ObjectMap_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/script_interface/tests/ObjectMap_test.cpp b/src/script_interface/tests/ObjectMap_test.cpp index e735dd68c29..843b3ef3f92 100644 --- a/src/script_interface/tests/ObjectMap_test.cpp +++ b/src/script_interface/tests/ObjectMap_test.cpp @@ -43,6 +43,9 @@ struct ObjectMapImpl : ObjectMap { std::unordered_map mock_core; private: + void do_construct(VariantMap const ¶ms) override { + restore_from_checkpoint(params); + } void insert_in_core(KeyType const &key, ObjectRef const &obj_ptr) override { next_key = std::max(next_key, key + 1); mock_core[key] = obj_ptr;