diff --git a/modules/ecs/private/registry.test.cpp b/modules/ecs/private/registry.test.cpp index 2b5441a..fa10bb2 100644 --- a/modules/ecs/private/registry.test.cpp +++ b/modules/ecs/private/registry.test.cpp @@ -68,7 +68,7 @@ Suite raii = "raii"_suite = [] { std::ignore = Registry {}; }; - Case { "many won't throw" } = [] { + Case { "many won't freeze/throw" } = [] { for (auto idx : std::views::iota(0, 100'000)) { std::ignore = Registry {}; diff --git a/modules/ecs/private/sparse_set.test.cpp b/modules/ecs/private/sparse_set.test.cpp index f28f091..6016d99 100644 --- a/modules/ecs/private/sparse_set.test.cpp +++ b/modules/ecs/private/sparse_set.test.cpp @@ -33,7 +33,7 @@ Suite raii = "raii"_suite = [] { }; Suite element_raii = "element_raii"_suite = [] { - Case { "many inserts/removes won't throw" } = [] { + Case { "many inserts/removes won't freeze/throw" } = [] { auto set = Set {}; for (auto idx : std::views::iota(0, 10'000)) {