diff -r 65baf7f45ac8 -r 6ac92936cd44 tests/test_map_generics.c --- a/tests/test_map_generics.c Fri Apr 21 19:50:43 2023 +0200 +++ b/tests/test_map_generics.c Fri Apr 21 20:17:09 2023 +0200 @@ -33,7 +33,7 @@ CxMap *map = cxHashMapCreate(allocator, sizeof(cxstring), 0); cxMapPut(map, "test", "test"); - cxMapPut(map, CX_STR("foo"), "bar"); + cxMapPut(map, cx_mutstr("foo"), "bar"); cxMapPut(map, cx_str("hallo"), "welt"); return map;