Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenkernel/intern/asset_library_service_test.cc')
-rw-r--r--source/blender/blenkernel/intern/asset_library_service_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/asset_library_service_test.cc b/source/blender/blenkernel/intern/asset_library_service_test.cc
index 80504bbdc05..e26ae05301e 100644
--- a/source/blender/blenkernel/intern/asset_library_service_test.cc
+++ b/source/blender/blenkernel/intern/asset_library_service_test.cc
@@ -23,6 +23,7 @@
#include "BLI_path_util.h"
#include "BKE_appdir.h"
+#include "BKE_callbacks.h"
#include "CLG_log.h"
@@ -40,10 +41,12 @@ class AssetLibraryServiceTest : public testing::Test {
static void SetUpTestSuite()
{
CLG_init();
+ BKE_callback_global_init();
}
static void TearDownTestSuite()
{
CLG_exit();
+ BKE_callback_global_finalize();
}
void SetUp() override