From 44d8dcc418c9a5ffd0aa59043f24c1f98bbd2161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20Kr=C3=BCger?= <45282134+UweKrueger@users.noreply.github.com> Date: Thu, 29 Jul 2021 21:06:08 +0200 Subject: [PATCH] ci,globals: hot fix for hanging test case (#10997) --- vlib/v/tests/init_global_test.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/v/tests/init_global_test.v b/vlib/v/tests/init_global_test.v index 791b4a73fd..227f0e3ff4 100644 --- a/vlib/v/tests/init_global_test.v +++ b/vlib/v/tests/init_global_test.v @@ -128,6 +128,7 @@ fn test_global_mutex() { } else { f2 = 17.0 } + mtx.unlock() mtx.@rlock() assert (f1 == 17.0 && f2 == 34.0625) || (f1 == 34.0625 && f2 == 17.0) mtx.runlock()