From 405c707e23dfd65d43f68658443203dabb7ccfdc Mon Sep 17 00:00:00 2001 From: light7734 Date: Tue, 30 Sep 2025 14:03:39 +0330 Subject: [PATCH] style: minor renames --- modules/ecs/private/registry.test.cpp | 2 +- modules/ecs/private/sparse_set.test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)) {