Fix assert in id remapper tests.

Was using uninitialized ID name, leading to unknown ID type.

Thanks at Ray molenkamp (@LazyDodo) for noting the issue.
This commit is contained in:
Bastien Montagne 2022-08-26 16:34:51 +02:00
parent 763cafc2b1
commit 8181494ffe
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ TEST(lib_id_remapper, unassigned)
{
ID id1;
ID *idp = &id1;
BLI_strncpy(id1.name, "OB2", sizeof(id1.name));
IDRemapper *remapper = BKE_id_remapper_create();
BKE_id_remapper_add(remapper, &id1, nullptr);