From fc0e63455bd6c01901370d6c1d4b2bcfd88996b1 Mon Sep 17 00:00:00 2001 From: light7734 Date: Wed, 8 Oct 2025 06:50:13 +0330 Subject: [PATCH] test(ecs): fix a testcase --- modules/ecs/private/registry.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ecs/private/registry.test.cpp b/modules/ecs/private/registry.test.cpp index fa10bb2..362b002 100644 --- a/modules/ecs/private/registry.test.cpp +++ b/modules/ecs/private/registry.test.cpp @@ -131,7 +131,7 @@ Suite component_raii = "component_raii"_suite = [] { { .m_int = idx, .m_string = std::to_string(idx) } ); - expect_ne(component.m_int, idx); + expect_eq(component.m_int, idx); expect_eq(component.m_string, std::to_string(idx)); } };