From c18a38ae931c77faea31ade08463c76a255a5806 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Mon, 23 Oct 2023 15:50:42 +0800 Subject: [PATCH] wip --- tests/Kernel/Containers/list_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Kernel/Containers/list_test.cpp b/tests/Kernel/Containers/list_test.cpp index c7193f30d..470a8634c 100644 --- a/tests/Kernel/Containers/list_test.cpp +++ b/tests/Kernel/Containers/list_test.cpp @@ -146,7 +146,7 @@ TEST_CASE ("long list under stack size") { cout << "Initial mem used: " << initial_mem_used << LF; list long_l; // increase the size to 5000, there will be a stackoverflow on Windows - for (int i=0; i<4000; i++) { + for (int i= 0; i < 4000; i++) { long_l= list ("88888888", long_l); } int final_mem_used= mem_used ();